Obsidian/Recognition/Programing/Linux/RHEL9/윈도우에서 편집한 문서에 CR문자 제거.md

8 lines
66 B
Markdown
Raw Permalink Normal View History

2023-10-13 08:59:10 +00:00
```shell
# 문서의 ^M 제거
sed -i -e 's/\r$//' test.sh
```