mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 16:53:10 +02:00
pbcopy,pbpaste: add Thai translations (#9791)
This commit is contained in:
parent
f46fc25fcd
commit
3a73b476e0
4 changed files with 28 additions and 0 deletions
13
pages.th/osx/pbcopy.md
Normal file
13
pages.th/osx/pbcopy.md
Normal 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
13
pages.th/osx/pbpaste.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# pbpaste
|
||||||
|
|
||||||
|
> ส่งเนื้อหาของคลิปบอร์ดไปยังผลผลิตมาตรฐาน (`stdout`).
|
||||||
|
> เทียบได้กับการกดปุ่ม Cmd + V บนแป้นพิมพ์.
|
||||||
|
> ข้อมูลเพิ่มเติม: <https://ss64.com/osx/pbpaste.html>.
|
||||||
|
|
||||||
|
- เขียนเนื้อหาของคลิปบอร์ดไปยังไฟล์:
|
||||||
|
|
||||||
|
`pbpaste > {{ทาง/ไป/ไฟล์}}`
|
||||||
|
|
||||||
|
- นำเนื้อหาในคลิปบอร์ดไปใช้เป็นอินพุตของคำสั่ง:
|
||||||
|
|
||||||
|
`pbpaste | grep foo`
|
|
@ -1,6 +1,7 @@
|
||||||
# pbcopy
|
# pbcopy
|
||||||
|
|
||||||
> Copy data from `stdin` to the clipboard.
|
> Copy data from `stdin` to the clipboard.
|
||||||
|
> Comparable to pressing Cmd + C on the keyboard.
|
||||||
> More information: <https://ss64.com/osx/pbcopy.html>.
|
> More information: <https://ss64.com/osx/pbcopy.html>.
|
||||||
|
|
||||||
- Place the contents of a specific file in the clipboard:
|
- Place the contents of a specific file in the clipboard:
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# pbpaste
|
# pbpaste
|
||||||
|
|
||||||
> Send the contents of the clipboard to standard output.
|
> 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>.
|
> More information: <https://ss64.com/osx/pbpaste.html>.
|
||||||
|
|
||||||
- Write the contents of the clipboard to a file:
|
- Write the contents of the clipboard to a file:
|
||||||
|
|
Loading…
Add table
Reference in a new issue