linux中删除和强制删除的区别

问题描述 投票:-3回答:1

我真的很困惑DELETE和FORCE DELETE有什么区别。 rm -r dir如何与rm -f file不同。谢谢。

linux ubuntu terminal command
1个回答
0
投票

如果你查看rm的手册页,你会看到它的确切作用:

-f           Attempt to remove the files without prompting for confirma-
             tion, regardless of the file's permissions.  If the file does
             not exist, do not display a diagnostic message or modify the
             exit status to reflect an error.  The -f option overrides any
             previous -i options.

-R           Attempt to remove the file hierarchy rooted in each file
             argument.  The -R option implies the -d option.  If the -i
             option is specified, the user is prompted for confirmation
             before each directory's contents are processed (as well as
             before the attempt is made to remove the directory).  If the
             user does not respond affirmatively, the file hierarchy
             rooted in that directory is skipped.

-r           Equivalent to -R.
© www.soinside.com 2019 - 2024. All rights reserved.