“Shell 命令”的版本间的差异
跳到导航
跳到搜索
(建立内容为“== 例子 == === 同时运行几个命令 === 使用 xargs。 <syntaxhighlight lang=bash> ls dir | xargs -P4 -L1 cargo run --release </syntaxhighlight> 实时…”的新页面) |
|||
(未显示同一用户的3个中间版本) | |||
第1行: | 第1行: | ||
+ | [[Category:命令行]] | ||
== 例子 == | == 例子 == | ||
+ | |||
+ | === ulimit === | ||
+ | |||
+ | 查看各种信息 | ||
+ | |||
+ | ulimit -a | ||
+ | |||
+ | 更改 stack size | ||
+ | |||
+ | ulimit -s 64000 | ||
=== 同时运行几个命令 === | === 同时运行几个命令 === | ||
第13行: | 第24行: | ||
watch -n 1 'pgrep -x cargo | xargs -L1 cmdof' | watch -n 1 'pgrep -x cargo | xargs -L1 cmdof' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | <code>cmdof</code> 见我的 [https://github.com/weirane/scripts/blob/b3b501d0e1e95607975e50d10c97591cb76126e8/cmdof scripts] 仓库。 | ||
== 另见 == | == 另见 == | ||
第18行: | 第31行: | ||
* [[Zsh]] | * [[Zsh]] | ||
− | + | == 参考资料 == | |
+ | |||
+ | <references /> |