cmd, mkdir, mklink, find, dir, clip: add Japanese translation (#4580)

This commit is contained in:
NL Sum
2020-10-10 07:51:36 +08:00
committed by GitHub
parent 8994f18ea4
commit 07417ed646
6 changed files with 128 additions and 0 deletions

20
pages.ja/windows/clip.md Normal file
View File

@@ -0,0 +1,20 @@
# clip
> 入力コンテンツをWindowsクリップボードにコピーします
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/clip>.
- コマンドライン出力をWindowsクリップボードにパイプします:
`{{dir}} | clip`
- ファイルの内容をWindowsクリップボードにコピーします:
`clip < {{path/to/file.ext}}`
- 末尾に改行が付いたテキストをWindowsクリップボードにコピーします:
`echo {{テキスト}} | clip`
- 末尾の改行なしでテキストをWindowsクリップボードにコピーします:
`echo | set /p="テキスト" | clip`