Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- context
- import
- Quartz
- netsh
- GIT
- Source
- bash
- 단축키
- resource
- 줄바꿈 문자
- vscode
- xargs
- plugin
- JavaScript
- Windows
- find
- Eclipse
- Windows 10
- lsof
- VirtualBox
- Mac
- profile
- maVen
- grep
- 네트워크
- tomcat
- ssh
- port
- web.xml
- IntelliJ
Archives
- Today
- Total
develog
[bash] 쉘 스크립트에서 ps 명령어의 결과를 한 라인씩 출력하기 본문
ps -ef | grep 'aa.sh' | grep -v grep | while IFS= read -r line
do
echo "$line"
done