“Shell 命令”的版本间的差异

来自wrc's Wiki
跳到导航 跳到搜索
(建立内容为“== 例子 == === 同时运行几个命令 === 使用 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]]
  
[[Category:命令行]]
+
== 参考资料 ==
 +
 
 +
<references />

2021年9月10日 (五) 08:21的最新版本

例子

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 仓库。

另见

参考资料