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 |
Tags
- 단축키
- context
- Windows 10
- 네트워크
- profile
- port
- Quartz
- import
- vscode
- xargs
- bash
- Mac
- 줄바꿈 문자
- Windows
- grep
- plugin
- IntelliJ
- VirtualBox
- JavaScript
- tomcat
- web.xml
- GIT
- lsof
- ssh
- Eclipse
- find
- netsh
- Source
- resource
- maVen
Archives
- Today
- Total
develog
[bash] 쉘 스크립트에서 ps 명령어의 결과를 한 라인씩 출력하기 본문
ps -ef | grep 'aa.sh' | grep -v grep | while IFS= read -r line
do
echo "$line"
done
Comments