rmdir
Remove directory, this command will only work if the folders are empty. 移除一个空文件夹
Syntax
rmdir [options]... folder(s)...
Options
--ignore-fail-on-non-empty
Ignore each failure that is solely because the
directory is non-empty.
-p, --parents Remove explicit parent directories if being emptied
--verbose Output a diagnostic for every directory processed
--help Display help and exit
--version Output version information and exit
Example
$ rmdir myfolder
Before removing directories with a wildcard, it's wise to list them first:
$ ls -d britney*/
rm
Remove files
rm -rf
remove non-empty folder(rm -rf will recursively remove folders and their contents)
ls -al
List information about files
tar
压缩,解压文件命令
把其他路径下的压缩文件解压到当前文件夹:
tar zxvf
/
usr
/
local
/
xxx.tar.gz
patch
为文件打补丁
patch –p0
<
patchfile.patch
![]()
本文介绍了Linux系统中常用的命令,如rmdir用于删除空文件夹、rm用于移除文件及非空目录、ls显示文件信息、tar进行文件压缩与解压等。通过实际案例展示了如何使用这些命令,并解释了其选项的功能。
3万+

被折叠的 条评论
为什么被折叠?



