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

beep
NL Sum 2020-10-10 07:51:36 +08:00 committed by GitHub
parent 8994f18ea4
commit 07417ed646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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`

36
pages.ja/windows/cmd.md Normal file
View File

@ -0,0 +1,36 @@
# cmd
> Windowsコマンドインタープリター
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/cmd>.
- コマンドインタープリターの新しいインスタンスを開始します:
`cmd`
- 指定されたコマンドを実行して終了します:
`cmd /c "{{コマンド}}"`
- 指定されたコマンドを実行して、インタラクティブシェルに入ります:
`cmd /k "{{コマンド}}"`
- コマンドの出力での「echo」の使用を無効にします:
`cmd /q`
- コマンド拡張機能を有効または無効にします:
`cmd /e:{{on|off}}`
- ファイルまたはディレクトリのオートコンプリートを有効または無効にします:
`cmd /f:{{on|off}}`
- 環境変数の拡張を有効または無効にします:
`cmd /v:{{on|off}}`
- 出力でUnicodeエンコーディングを使用するように強制します:
`cmd /u`

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

@ -0,0 +1,20 @@
# dir
> ディレクトリの内容を一覧表示します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/dir>.
- 現在のディレクトリの内容を表示します:
`dir`
- 特定のディレクトリの内容を表示します:
`dir {{ディレクトリパス}}`
- 非表示の内容を含む、現在のディレクトリの内容を表示します:
`dir /A`
- 非表示の内容を含む、特定のディレクトリの内容を表示します:
`dir {{ディレクトリパス}} /A`

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

@ -0,0 +1,20 @@
# find
> 1つ以上のファイルで指定された文字列を検索します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/find>.
- 指定された文字列を含む行を検索します:
`find {{文字列}} {{ファイルまたはディレクトリのパス}}`
- 指定された文字列を含まない行を表示します:
`find {{文字列}} {{ファイルまたはディレクトリのパス}} /v`
- 指定された文字列を含む行数を表示します:
`find {{文字列}} {{ファイルまたはディレクトリのパス}} /c`
- 行リストとともに行番号を表示します:
`find {{文字列}} {{ファイルまたはディレクトリのパス}} /n`

12
pages.ja/windows/mkdir.md Normal file
View File

@ -0,0 +1,12 @@
# mkdir
> ディレクトリを作成します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/mkdir>.
- ディレクトリを作成します:
`mkdir {{ディレクトリ名}}`
- ネストされたディレクトリツリーを再帰的に作成します:
`mkdir {{サブディレクトリ名のパス}}`

View File

@ -0,0 +1,20 @@
# mklink
> シンボリックリンクを作成します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/mklink>.
- ファイルへのシンボリックリンクを作成します:
`mklink {{リンクパス}} {{ソースファイルのパス}}`
- ディレクトリへのシンボリックリンクを作成します:
`mklink /d {{リンクパス}} {{ソースディレクトリパス}}`
- ファイルへのハードリンクを作成します:
`mklink /h {{リンクパス}} {{ソースファイルのパス}}`
- ディレクトリジャンクションを作成します:
`mklink /j {{リンクパス}} {{ソースファイルのパス}}`