osx/terminal-notifier: fix typo, osx/*: add Korean translation (#14758)

This commit is contained in:
코드싸이
2024-11-12 04:54:15 +09:00
committed by GitHub
parent 3c745bfaae
commit f5003bb990
202 changed files with 3796 additions and 1 deletions

24
pages.ko/osx/textutil.md Normal file
View File

@@ -0,0 +1,24 @@
# 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`