linux tr remove spaces, tabs, carriage returns and newlines.
Linux/Linux 명령어 :
2017. 9. 5. 16:12
반응형
You can use tr
, as in tr -d '\040\011\012\015'
, which will remove spaces, tabs, carriage returns and newlines.
$ cat file.txt | tr -d '\040\011\012\015' > out.txt
반응형
'Linux > Linux 명령어' 카테고리의 다른 글
cpu hotplug (0) | 2018.02.27 |
---|---|
파일 디스크립터 누수 확인 (lsof) (0) | 2014.11.14 |
examples to exclude directories using prune (0) | 2014.07.03 |