您可以使用CLI在Linux中重命名目录吗?
时间:2020-01-09 10:37:33 来源:igfitidea点击:
您可以使用命令行选项在Linux中重命名目录吗?
是的,您可以在Linux bash shell中重命名目录(也称为文件夹)。
需要使用mv命令来重命名和移动文件,目录或文件夹。
一切都是Linux操作系统下的文件,包括文件夹。
您可以在Linux中重命名目录吗?
在Linux中重命名目录的过程如下:
- 打开Linux Terminal应用程序或bash提示
- 键入以下Linux命令将delta文件夹重命名为data:
mv delta data - 您也可以使用完整路径:
mv/home/Hyman/old-folder-name/home/Hyman/new-folder-name
让我们详细了解mv命令示例和语法,以在Linux中重命名文件夹。
例子
pwd命令显示当前工作目录:
pwd
输出示例:
/home/theitroad/
mv命令的语法形式如下:
mv old-name new-name mv [options] old-name new-name mv [options] source target
要将名为sales的目录重命名为当前目录中的SalesData:
pwd ls -l mv sales SalesData
使用ls命令验证它:
ls -l
如果SalesData文件夹与sales目录位于同一目录中,则pics目录只能重命名。
因此,请始终使用pwd命令和ls命令查找您当前的工作目录。
在Linux上获得有关mv命令的帮助
在cli上运行以下mv命令以读取所有选项的mv手册页:
man mv mv --help
输出示例:
Usage: mv [OPTION]... [-T] SOURCE DEST
or: mv [OPTION]... SOURCE... DIRECTORY
or: mv [OPTION]... -t DIRECTORY SOURCE...
Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
Mandatory arguments to long options are mandatory for short options too.
--backup[=CONTROL] make a backup of each existing destination file
-b like --backup but does not accept an argument
-f, --force do not prompt before overwriting
-i, --interactive prompt before overwrite
-n, --no-clobber do not overwrite an existing file
If you specify more than one of -i, -f, -n, only the final one takes effect.
--strip-trailing-slashes remove any trailing slashes from each SOURCE
argument
-S, --suffix=SUFFIX override the usual backup suffix
-t, --target-directory=DIRECTORY move all SOURCE arguments into DIRECTORY
-T, --no-target-directory treat DEST as a normal file
-u, --update move only when the SOURCE file is newer
than the destination file or when the
destination file is missing
-v, --verbose explain what is being done
-Z, --context set SELinux security context of destination
file to default type
--help display this help and exit
--version output version information and exit
The backup suffix is '~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.
The version control method may be selected via the --backup option or through
the VERSION_CONTROL environment variable. Here are the values:
none, off never make backups (even if --backup is given)
numbered, t make numbered backups
existing, nil numbered if numbered backups exist, simple otherwise
simple, never always make simple backups
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
Full documentation at: <https://www.gnu.org/software/coreutils/mv>
or available locally via: info '(coreutils) mv invocation'

