sed, dig, ps, echo, less, mysql, vim: add Japanese translation (#5916)
This commit is contained in:
31
pages.ja/common/ps.md
Normal file
31
pages.ja/common/ps.md
Normal 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`
|
Reference in New Issue
Block a user