⑴我已经写了一些关于使用CLI来管理你系统上的文件的文章,下面介绍一些基本命令,这些命令在所有发行版上都经常会用到。
⑵拷贝文件或目录到一个新的位置:
⑶.cp path_of_file_ path_of_the_directory_where_you_want_to_copy/
⑷将某个目录中的所有文件拷贝到一个新的位置(注意斜线和星号,它指的是该目录下的所有文件:
⑸.cp path_of_files/* path_of_the_directory_where_you_want_to_copy/
⑹将一个文件从某个位置移动到另一个位置(尾斜杠是说放在该目录中:
⑺.mv path_of_file_ path_of_the_directory_where_you_want_to_move/
⑻将所有文件从一个位置移动到另一个位置:
⑼.mv path_of_directory_where_files_are/* path_of_the_directory_where_you_want_to_move/
⑽.rm path_of_file
⑾.rm -r path_of_directory
⑿移除目录中所有内容,完整保留目录文件夹:
⒀.rm -r path_of_directory/*
⒁要创建一个新目录,首先进入到你要创建该目录的位置。比如说,你想要在你的Documents目录中创建一个名为‘foundation’的文件夹。让我们使用 cd (即change directory,改变目录命令来改变目录:
⒂.cd /home/swapnil/Documents
⒃(替换‘swapnil’为你系统中的用户名
⒄然后,使用 mkdir 命令来创建该目录:
⒅.mkdir foundation
⒆你也可以从任何地方创建一个目录,通过指定该目录的路径即可。例如:
⒇.mdkir /home/swapnil/Documents/foundation
⒈如果你想要连父目录一起创建,那么可以使用 -p 选项。它会在指定路径中创建所有目录:
⒉.mdkir -p /home/swapnil/Documents/linux/foundation