linux03命令之mkdir、rm、mv

-m,--mode=MODE set file mode (as in chmod), not a=rwx - umask  


-p,--parents

no error if existing, make parent directories as needed

如果没有父目录递归创建

-v,--verbose

print a message for each created directory

每次创建新目录都显示信息。

-Z,--context=CTX

set the SELinux security context of each created directory to ztx

设置每个创建的目录ctx的SELinux安全上下文


rm 命令

-d      --directory    删除可能仍有数据的目录 (只限超级用户)

-f      --force          略过不存在的文件,不显示任何信息

-i      --interactive 进行任何删除操作前必须先确认

-r/R --recursive    同时删除该目录下的所有目录层

-v      --verbose     详细显示进行的步骤



mv 命令

-b :若需覆盖文件,则覆盖前先行备份。

-f :force 强制的意思,如果目标文件已经存在,不会询问而直接覆盖;

-i :若目标文件 (destination) 已经存在时,就会询问是否覆盖!

-u :若目标文件已经存在,且 source 比较新,才会更新(update)

-t  : --target-directory=DIRECTORY move all SOURCE arguments into DIRECTORY,即指定mv的目标目录,该选项适用于移动多个源文件到一个目录的情况,此时目标目录在前,源文件在后。

你可能感兴趣的:(linux03命令之mkdir、rm、mv)