Skip to content

Commit

Permalink
ipconfig, more, path, title: add traditional Chinese translation (#8686)
Browse files Browse the repository at this point in the history
  • Loading branch information
poychang authored Oct 4, 2022
1 parent e40d013 commit 9ea7033
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pages.zh_TW/windows/ipconfig.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# ipconfig

> 顯示和管理 Windows 的網路設定值。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/ipconfig>.
- 顯示網路介面卡列表:

`ipconfig`

- 顯示網路介面卡的詳細列表:

`ipconfig /all`

- 為一個網路介面卡重新獲取 IP 地址:

`ipconfig /renew {{介面卡}}`

- 為一個網路介面卡釋放 IP 地址:

`ipconfig /release {{介面卡}}`

- 清除所有 DNS 快取:

`ipconfig /flushdns`
32 changes: 32 additions & 0 deletions pages.zh_TW/windows/more.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# more

> 分頁顯示標準輸入或文件的輸出。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/more>.
- 分頁顯示標準輸入的輸出:

`{{echo test}} | more`

- 分頁顯示一個或多個文件的內容:

`more {{檔案/完整/路徑}}`

- 將製表符(tab)轉換為指定的空格數(space):

`more {{檔案/完整/路徑}} /t{{空格數}}`

- 顯示內容前先清除輸出:

`more {{檔案/完整/路徑}} /c`

- 從第 5 行開始顯示輸出:

`more {{檔案/完整/路徑}} +{{5}}`

- 啟用擴展交互模式(請參閱使用幫助):

`more {{檔案/完整/路徑}} /e`

- 顯示全部幫助資訊:

`more /?`
20 changes: 20 additions & 0 deletions pages.zh_TW/windows/path.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# path

> 顯示或設定可執行檔的搜尋路徑。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/path>.
- 顯示當前的 PATH 環境變數的設定:

`path`

- 將路徑設定為一個或多個以分號分隔的路徑目錄:

`path {{檔案/完整/路徑}};{{檔案/完整/路徑]}}`

- 將新的路徑目錄附加到到原始路徑:

`path {{檔案/完整/路徑}};%path%`

- 將命令提示字元設定為僅在當前目錄中搜尋可執行檔:

`path ;`
8 changes: 8 additions & 0 deletions pages.zh_TW/windows/title.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# title

> 設定命令提示字元視窗的標題。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/title>.
- 設定當前命令提示字元的視窗標題:

`title {{新標題}}`

0 comments on commit 9ea7033

Please sign in to comment.