Skip to content

Commit

Permalink
assoc, attrib, cd, choco-apikey, choco-feature, choco-info, choco, cl…
Browse files Browse the repository at this point in the history
…s: add Japanese translation (tldr-pages#4607)
  • Loading branch information
nlsum1 authored Oct 12, 2020
1 parent 245b22d commit 91df905
Show file tree
Hide file tree
Showing 8 changed files with 149 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pages.ja/windows/assoc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# assoc

> ファイル拡張子の関連付けを表示または変更します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/assoc>.
- 関連するすべてのファイルタイプをします:

`assoc`

- 特定の拡張子に関連付けられているファイルの種類を表示します:

`assoc {{.txt}}`

- 特定の拡張子に関連付けられたファイルタイプを変更します:

`assoc {{.txt}}={{テキストファイル}}`
28 changes: 28 additions & 0 deletions pages.ja/windows/attrib.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# attrib

> ファイルまたはディレクトリの属性を表示または変更します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/attrib>.
- 現在のディレクトリ内のファイルの属性を表示します:

`attrib`

- 現在のディレクトリとサブディレクトリにあるファイルの属性を表示します:

`attrib /S`

- 現在のディレクトリとサブディレクトリ内のファイルとディレクトリの属性を表示します:

`attrib /S /D`

- ファイルに読み取り専用属性を追加します:

`attrib +R {{ファイル名.txt}}`

- システムとファイルの非表示属性を削除します:

`attrib -S -H {{ファイル名.txt}}`

- 非表示の属性をディレクトリに追加します:

`attrib +H {{ディレクトリパス}}`
20 changes: 20 additions & 0 deletions pages.ja/windows/cd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# cd

> 現在の作業ディレクトリの名前を表示するか、現在の作業ディレクトリを変更します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/cd>.
- 同じドライブ内のディレクトリに移動します:

`cd {{ディレクトリパス}}`

- 現在のディレクトリの名前を表示します:

`cd`

- 現在のディレクトリの親に移動します:

`cd ..`

- 別のドライブのディレクトリに移動します:

`cd {{ディレクトリパス}} /d`
20 changes: 20 additions & 0 deletions pages.ja/windows/choco-apikey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# choco-apikey

> ChocolateyソースのAPIキーを管理します
> 詳しくはこちら: <https://chocolatey.org/docs/commands-apikey>.
- ソースとそのAPIキーのリストを表示します:

`choco apikey`

- 特定のソースとそのAPIキーを表示します:

`choco apikey --source "{{ソースURL}}"`

- ソースのAPIキーを設定します:

`choco apikey --source "{{ソースURL}}" --key "{{APIキー}}"`

- ソースのAPIキーを削除します:

`choco apikey --source "{{ソースURL}}" --remove`
16 changes: 16 additions & 0 deletions pages.ja/windows/choco-feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# choco feature

> Chocolateyで機能を操作します.
> 詳しくはこちら: <https://chocolatey.org/docs/commands-feature>.
- 利用可能な機能のリストを表示します:

`choco feature list`

- 機能を有効にします:

`choco feature enable --name {{名}}`

- 機能を無効にします:

`choco feature disable --name {{名}}`
20 changes: 20 additions & 0 deletions pages.ja/windows/choco-info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# choco info

> Chocolateyのパッケージに関する詳細情報を表示します
> 詳しくはこちら: <https://chocolatey.org/docs/commands-info>.
- 特定のパッケージに関する情報を表示します:

`choco info {{パッケージ}}`

- ローカルパッケージ情報のみを表示します:

`choco info {{パッケージ}} --local-only`

- パッケージ情報を受信するカスタムソースを指定します:

`choco info {{パッケージ}} --source {{ソースURL|エイリアス}}`

- 認証用のユーザー名とパスワードを入力します:

`choco info {{パッケージ}} --user {{ユーザー名}} --password {{パスワード}}`
21 changes: 21 additions & 0 deletions pages.ja/windows/choco.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# choco

> Chocolateyパッケージマネージャーのコマンドラインインターフェイスです
> 詳細については、「choco install」、「choco upgrade」などのページを参照してください
> 詳しくはこちら: <https://chocolatey.org>.
- Chocolateyコマンドを実行します:

`choco {{コマンド}}`

- 一般的なヘルプを表示します:

`choco -?`

- 特定のコマンドのヘルプを表示します:

`choco {{コマンド}} -?`

- Chocolateyバージョンを表示します:

`choco --version`
8 changes: 8 additions & 0 deletions pages.ja/windows/cls.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# cls

> 画面をクリアします
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/cls>.
- 画面をクリアします:

`cls`

0 comments on commit 91df905

Please sign in to comment.