关闭→
当前位置:科普经验站>IT科技>linux删除文件的命令有哪些

linux删除文件的命令有哪些

科普经验站 人气:2.8W

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删除文件的命令有哪些

TAG标签:#文件 #linux #命令 #