Shell 命令
跳到导航
跳到搜索
使用
例子
使用 git diff
的格式比较不在仓库中的文件
git diff --no-index -- A B
还可加 git diff
的其他选项(如指定 context 行数等等)
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 仓库。