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
- IntelliJ
- tomcat
- JavaScript
- port
- VirtualBox
- Windows
- Source
- profile
- context
- ssh
- import
- resource
- bash
- grep
- lsof
- maVen
- vscode
- web.xml
- GIT
- xargs
- 줄바꿈 문자
- plugin
- Eclipse
- netsh
- 네트워크
- Mac
- 단축키
- Quartz
- Windows 10
- find
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