Rumah > Artikel > Operasi dan penyelenggaraan > linux中如何删除文件
在Linux下删除文件用rm命令,具体用法如下:
rm [选项] 文件
选项说明:
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
相关文章教程推荐:linux教程
Atas ialah kandungan terperinci linux中如何删除文件. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!