osx/terminal-notifier: fix typo, osx/*: add Korean translation (#14758)

This commit is contained in:
코드싸이
2024-11-12 04:54:15 +09:00
committed by GitHub
parent 3c745bfaae
commit f5003bb990
202 changed files with 3796 additions and 1 deletions

28
pages.ko/osx/ps.md Normal file
View File

@@ -0,0 +1,28 @@
# ps
> 실행 중인 프로세스에 대한 정보.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/ps.1.html>.
- 모든 실행 중인 프로세스 나열:
`ps aux`
- 전체 명령어 문자열을 포함하여 모든 실행 중인 프로세스 나열:
`ps auxww`
- 문자열과 일치하는 프로세스 검색:
`ps aux | grep {{문자열}}`
- 프로세스의 부모 PID 가져오기:
`ps -o ppid= -p {{PID}}`
- 메모리 사용량으로 프로세스 정렬:
`ps -m`
- CPU 사용량으로 프로세스 정렬:
`ps -r`