(未显示同一用户的1个中间版本) | |||
第1行: | 第1行: | ||
+ | [[Category:命令行]] | ||
== 例子 == | == 例子 == | ||
第30行: | 第31行: | ||
* [[Zsh]] | * [[Zsh]] | ||
− | + | == 参考资料 == | |
+ | |||
+ | <references /> |
查看各种信息
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 仓库。