pbcopy, pbpaste: add Japanese Translation (#22047)

This commit is contained in:
Taisei Uemura
2026-04-27 23:37:02 +09:00
committed by GitHub
parent 5912dbcfdc
commit 293e06b699
2 changed files with 26 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# pbcopy
> `stdin`(標準入力)からデータをクリップボードにコピーします。
> これは、キーボードの`<Cmd c>`を押す操作に相当します。
> 詳細情報: <https://keith.github.io/xcode-man-pages/pbcopy.1.html>。
- 指定したファイルの内容をクリップボードにコピーします:
`pbcopy < {{パス/宛先/ファイル}}`
- 特定のコマンドの実行結果をクリップボードにコピーします:
`find . -type t -name "*.png" | pbcopy`
+13
View File
@@ -0,0 +1,13 @@
# pbpaste
> クリップボードの内容を`stdout`(標準出力)に送信します。
> これは、キーボードの`<Cmd v>`を押す操作に相当します。
> 詳細情報: <https://keith.github.io/xcode-man-pages/pbcopy.1>。
- クリップボードの内容をファイルに書き出す:
`pbpaste > {{パス/宛先/ファイル}}`
- クリップボードの内容をコマンドの入力として使用する:
`pbpaste | {{grep 検索文字列}}`