-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mv: add traditional Chinese translation (#11383)
- Loading branch information
1 parent
0be5b5b
commit 5d0d9a0
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# mv | ||
|
||
> 移動或重命名文件或目錄。 | ||
> 更多資訊:<https://www.gnu.org/software/coreutils/mv>. | ||
- 移動文件到任意位置: | ||
|
||
`mv {{路徑/到/來源}} {{路徑/到/目標}}` | ||
|
||
- 移動文件到其他目錄,並保持文件名不變: | ||
|
||
`mv {{路徑/到/來源1 路徑/到/來源2 ...}} {{路徑/到/目標目錄}}` | ||
|
||
- 覆蓋現有文件前無需確認: | ||
|
||
`mv -f {{路徑/到/來源}} {{路徑/到/目標}}` | ||
|
||
- 無論是否有文件權限,覆蓋現有文件前均需要確認: | ||
|
||
`mv -i {{路徑/到/來源}} {{路徑/到/目標}}` | ||
|
||
- 不要覆蓋現有的目標文件: | ||
|
||
`mv -n {{路徑/到/來源}} {{路徑/到/目標}}` | ||
|
||
- 詳細模式,移動後顯示文件名: | ||
|
||
`mv -v {{路徑/到/來源}} {{路徑/到/目標}}` |