Shell 命令

来自wrc's Wiki
跳到导航 跳到搜索

例子

ulimit

查看各种信息

ulimit -a

更改 stack size

ulimit -s 64000

同时运行几个命令

使用 xargs。

ls dir | xargs -P4 -L1 cargo run --release

实时查看正在运行哪些命令:

watch -n 1 'pgrep -x cargo | xargs -L1 cmdof'

cmdof 见我的 scripts 仓库。

另见

参考资料