pbcopy,pbpaste: add Thai translations (#9791)

pull/3/head
Nuttapong Rojanavanich 2023-02-03 11:38:01 +07:00 committed by GitHub
parent f46fc25fcd
commit 3a73b476e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 0 deletions

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

@ -0,0 +1,13 @@
# pbcopy
> คัดลอกข้อมูลจากอินพุตมาตรฐาน (`stdin`) ไปยังคลิปบอร์ด.
> เทียบได้กับการกดปุ่ม Cmd + C บนแป้นพิมพ์.
> ข้อมูลเพิ่มเติม: <https://ss64.com/osx/pbcopy.html>.
- คัดลอกเนื้อหาในไฟล์ที่กำหนดไปยังคลิปบอร์ด:
`pbcopy < {{ทาง/ไป/ไฟล์}}`
- คัดลอกผลลัพธ์ของคำสั่งไปยังคลิปบอร์ด:
`find . -type t -name "*.png" | pbcopy`

13
pages.th/osx/pbpaste.md Normal file
View File

@ -0,0 +1,13 @@
# pbpaste
> ส่งเนื้อหาของคลิปบอร์ดไปยังผลผลิตมาตรฐาน (`stdout`).
> เทียบได้กับการกดปุ่ม Cmd + V บนแป้นพิมพ์.
> ข้อมูลเพิ่มเติม: <https://ss64.com/osx/pbpaste.html>.
- เขียนเนื้อหาของคลิปบอร์ดไปยังไฟล์:
`pbpaste > {{ทาง/ไป/ไฟล์}}`
- นำเนื้อหาในคลิปบอร์ดไปใช้เป็นอินพุตของคำสั่ง:
`pbpaste | grep foo`

View File

@ -1,6 +1,7 @@
# pbcopy
> Copy data from `stdin` to the clipboard.
> Comparable to pressing Cmd + C on the keyboard.
> More information: <https://ss64.com/osx/pbcopy.html>.
- Place the contents of a specific file in the clipboard:

View File

@ -1,6 +1,7 @@
# pbpaste
> Send the contents of the clipboard to standard output.
> Comparable to pressing Cmd + V on the keyboard.
> More information: <https://ss64.com/osx/pbpaste.html>.
- Write the contents of the clipboard to a file: