rm -rf/*What is the meaning?
The "rm" command is used to delete unnecessary files. The function of this command is to delete one or more files or directories in a directory. It can also delete a directory and all files and subdirectories under it. For linked files, the link is simply broken and the original file remains unchanged.
Recommended: [Linux Tutorial]
##rm -rf * means to delete all files in the current directory. The general form of the "rm" command is:“rm [选项] 文件名… ”
The above is the detailed content of What is rm -rf/*?. For more information, please follow other related articles on the PHP Chinese website!