linux 文件夹重命名_如何在Linux中重命名目录和文件夹?

linux 文件夹重命名_如何在Linux中重命名目录和文件夹?_第1张图片

linux 文件夹重命名

Renaming or moving directories and folder can be tricky if those directories and folders have some subfolders. Or the destination may have all ready same name folder which will create some error. In this tutorial we will look how to rename and move directories and folders in Linux.

如果目录和文件夹具有某些子文件夹,则重命名或移动目录和文件夹可能会比较棘手。 否则目标可能已经准备好同一个名称文件夹,这将产生一些错误。 在本教程中,我们将研究如何在Linux中重命名和移动目录和文件夹。

使用Mv命令重命名 (Rename Using Mv Command)

The defacto command for rename directories and folders is mv . mv is the short form for the move . We can simply rename by providing the current directory and folder name and destination directory or folder name. Syntax is like below. If the source or current directory folder have content we need to rename by using recursive move. This will only change given directory or folder name but move all sub files and folder.

用于重命名目录和文件夹的defacto命令是mvmvmove的简称。 我们可以简单地通过提供当前目录和文件夹名称以及目标目录或文件夹名称来重命名。 语法如下。 如果源或当前目录文件夹中包含内容,则需要使用递归移动来重命名。 这只会更改给定的目录或文件夹名称,但会移动所有子文件和文件夹。

mv CURRENT_FOLDER   NEW_FOLDER

In this example we will rename directory named backup  into old_backup .

在此示例中,我们将名为backup目录重命名为old_backup

$ mv backup old_backup

详细 (Verbose)

While renaming or moving files and fo

你可能感兴趣的:(linux,java,etl,mooc,sms)