Skip to content

Commit 3a73b47

Browse files
authored
pbcopy,pbpaste: add Thai translations (#9791)
1 parent f46fc25 commit 3a73b47

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

pages.th/osx/pbcopy.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# pbcopy
2+
3+
> คัดลอกข้อมูลจากอินพุตมาตรฐาน (`stdin`) ไปยังคลิปบอร์ด.
4+
> เทียบได้กับการกดปุ่ม Cmd + C บนแป้นพิมพ์.
5+
> ข้อมูลเพิ่มเติม: <https://ss64.com/osx/pbcopy.html>.
6+
7+
- คัดลอกเนื้อหาในไฟล์ที่กำหนดไปยังคลิปบอร์ด:
8+
9+
`pbcopy < {{ทาง/ไป/ไฟล์}}`
10+
11+
- คัดลอกผลลัพธ์ของคำสั่งไปยังคลิปบอร์ด:
12+
13+
`find . -type t -name "*.png" | pbcopy`

pages.th/osx/pbpaste.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# pbpaste
2+
3+
> ส่งเนื้อหาของคลิปบอร์ดไปยังผลผลิตมาตรฐาน (`stdout`).
4+
> เทียบได้กับการกดปุ่ม Cmd + V บนแป้นพิมพ์.
5+
> ข้อมูลเพิ่มเติม: <https://ss64.com/osx/pbpaste.html>.
6+
7+
- เขียนเนื้อหาของคลิปบอร์ดไปยังไฟล์:
8+
9+
`pbpaste > {{ทาง/ไป/ไฟล์}}`
10+
11+
- นำเนื้อหาในคลิปบอร์ดไปใช้เป็นอินพุตของคำสั่ง:
12+
13+
`pbpaste | grep foo`

pages/osx/pbcopy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pbcopy
22

33
> Copy data from `stdin` to the clipboard.
4+
> Comparable to pressing Cmd + C on the keyboard.
45
> More information: <https://ss64.com/osx/pbcopy.html>.
56
67
- Place the contents of a specific file in the clipboard:

pages/osx/pbpaste.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pbpaste
22

33
> Send the contents of the clipboard to standard output.
4+
> Comparable to pressing Cmd + V on the keyboard.
45
> More information: <https://ss64.com/osx/pbpaste.html>.
56
67
- Write the contents of the clipboard to a file:

0 commit comments

Comments
 (0)