linux刪除命令?
General 更新 2022年9月13日
很多朋友都想知道linux刪除命令有哪些?下面就一起來看看吧!
linux刪除命令
linux刪除命令一共有以下幾種:
1、常規刪除a.txt檔案:[root]# rm a.txt;
2、強行刪除file.log檔案:[root]# rm -f file.log;
3、刪除dirname目錄下的所有東西:[root]# rm -R dir dirname;
4、刪除以 -f 開頭的檔案:
[root]# touch ./-f
[root]# ls ./-f
./-f
[root]# rm ./-f
或者使用:
[root]# touch -- -f
[root]# ls -- -f
-f
[root]# rm -- -f