mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:42:07 +02:00
841 B
841 B
textutil
다양한 형식의 텍스트 파일을 조작. 더 많은 정보: https://keith.github.io/xcode-man-pages/textutil.1.html.
foo.rtf
파일에 대한 정보 표시:
textutil -info {{경로/대상/foo.rtf}}
foo.rtf
를foo.html
로 변환:
textutil -convert {{html}} {{경로/대상/foo.rtf}}
- 서식 있는 텍스트를 일반 텍스트로 변환:
textutil {{경로/대상/foo.rtf}} -convert {{txt}}
foo.txt
를foo.rtf
로 변환, Times 10 폰트 사용:
textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{경로/대상/foo.txt}}
- 현재 디렉터리의 모든 RTF 파일을 불러와 내용을 연결하고, 결과를
index.html
로 작성하며 HTML 제목을 "Several Files"로 설정:
textutil -cat {{html}} -title "Several Files" -output {{경로/대상/index.html}} *.rtf