sed, dig, ps, echo, less, mysql, vim: add Japanese translation (#5916)

This commit is contained in:
あでり
2021-05-11 19:47:50 +09:00
committed by GitHub
parent dd8cfd038a
commit 956110581b
7 changed files with 232 additions and 0 deletions

31
pages.ja/common/ps.md Normal file
View File

@@ -0,0 +1,31 @@
# ps
> 実行中のプロセスに関する情報。
- 実行中のプロセスをすべてリストアップ:
`ps aux`
- 実行中のすべてのプロセスを、完全なコマンド文字列を含めて一覧表示する:
`ps auxww`
- 文字列にマッチするプロセスを検索する:
`ps aux | grep {{文字列}}`
- 現在のユーザーのすべてのプロセスを完全なフォーマットで表示する:
`ps --user $(id -u) -F`
- カレントユーザーの全プロセスをツリー状にリストアップ:
`ps --user $(id -u) f`
- プロセスの親 pid を取得する:
`ps -o ppid= -p {{pid}}`
- プロセスをメモリ消費量でソート:
`ps --sort size`