mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
pbcopy, pbpaste: add Japanese Translation (#22047)
This commit is contained in:
@@ -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`
|
||||
@@ -0,0 +1,13 @@
|
||||
# pbpaste
|
||||
|
||||
> クリップボードの内容を`stdout`(標準出力)に送信します。
|
||||
> これは、キーボードの`<Cmd v>`を押す操作に相当します。
|
||||
> 詳細情報: <https://keith.github.io/xcode-man-pages/pbcopy.1>。
|
||||
|
||||
- クリップボードの内容をファイルに書き出す:
|
||||
|
||||
`pbpaste > {{パス/宛先/ファイル}}`
|
||||
|
||||
- クリップボードの内容をコマンドの入力として使用する:
|
||||
|
||||
`pbpaste | {{grep 検索文字列}}`
|
||||
Reference in New Issue
Block a user