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
- 단축키
- web.xml
- vscode
- 네트워크
- xargs
- 줄바꿈 문자
- GIT
- lsof
- tomcat
- ssh
- Source
- resource
- maVen
- port
- grep
- VirtualBox
- profile
- Windows 10
- IntelliJ
- find
- bash
- Mac
- Windows
- Quartz
- plugin
- Eclipse
- import
- context
- JavaScript
- netsh
Archives
- Today
- Total
develog
[mac] sed 본문
파일 내용 바꾸기
sed -i '' -e 's/modified://g' file.txt
3번째 라인 삭제
sed -i '' -e '3d' file.txt
앞쪽 trim
sed -i '' -e 's/^[[:space:]]*//' file.txt
뒤쪽 trim
sed -i '' -e 's/[[:space:]]*$//' file.txt
빈라인 삭제
sed -i '' -e '/^$/d' file.txt
'OS & Shell > Mac' 카테고리의 다른 글
[mac] rm, No such file or directory (0) | 2021.02.25 |
---|---|
[mac] 단축키 (일반, 캡쳐) (0) | 2021.02.25 |
[mac] java.sql.SQLException: 로케일을 인식할 수 없습니다. (0) | 2021.02.23 |
[mac] 맥에서 윈도우로 scp 사용하기 (0) | 2021.02.23 |
[mac] java decompiler JD-GUI (0) | 2021.02.16 |
Comments