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

13
pages.ko/osx/pbcopy.md Normal file
View File

@@ -0,0 +1,13 @@
# pbcopy
> `stdin`에서 데이터를 클립보드로 복사합니다.
> 키보드에서 Cmd + C를 누르는 것과 비슷합니다.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/pbcopy.1.html>.
- 특정 [f]파일의 내용을 클립보드에 복사:
`pbcopy < {{경로/대상/파일}}`
- 특정 명령의 결과를 클립보드에 복사:
`find . -type t -name "*.png" | pbcopy`