반응형
Linux 상에서 개행문자 입력은 아래와 같이 할 수 있다.
ctrl + v + m
[root@localhost ~] # ^M ## ctrl + v + m
응용 ]
특정 text 파일에 개행문자를 삭제 하고자 할 경우 ...
### 개행문자가 포함되어 있을 경우
[root@localhost ~]# vim test.txt
test test test ^M test123 test1234
### 개행 문자 제거
[root@localhost ~]# sed -i "s/^M//" test.txt
### 개행 문자 제거가 되었을 경우
[root@localhost ~]# vim test.txt
test test test test123 test1234
반응형
'운영체제 > Linux' 카테고리의 다른 글
[Linux] Apache https로 redirect 예외처리 (특정 URL만 redirect되지 않도록....) (1) | 2020.10.26 |
---|---|
[Linux] Apache http(80) -> https(433) redirect 설정 (0) | 2020.10.12 |
[Linux] SMB(SAMBA)를 이용한 AD Join ( AD LDAP)설정 (0) | 2020.08.04 |
[Linux] Apache 2.4.43 + PHP 7.4.8 Source compile install (1) (0) | 2020.07.28 |
[Linux] Dell OMSA(OpenManage Server Administrator) 설치 (0) | 2020.07.28 |