该命令的功能为删除一个目录中的一个或多个文件或目录,它也可以将某个目录及其下的所有文件及子目录均删除。对于链接文件,只是删除了链接,原有文件均保持不变。如果使用 rm 来删除文件,通常仍可以将该文件恢复原状

命令格式

1
rm [选项] 文件

参数

1
2
3
4
5
6
-f, --force	#强制删除,不再二次确认,忽略文件不存在的错误。
-i, --interactive #进行交互式删除
-r, -R, --recursive #指示rm将参数中列出的全部目录和子目录均递归地删除。
-v, --verbose #详细显示进行的步骤
--help #显示此帮助信息并退出
--version #输出版本信息并退出

实例

  1. 删除文件file,系统会先询问是否删除
  • 输入
    1
    rm 文件名 #二次确认时,输入y后就会删除文件,不想删除则数据n
  • 输出
    1
    2
    3
    4
    5
    6
    7
    8
    [root@localhost test1]# ll
    总计 4
    -rw-r--r-- 1 root root 56 10-26 14:31 log.log
    root@localhost test1]# rm log.log
    rm:是否删除 一般文件 “log.log”? y
    root@localhost test1]# ll
    总计 0
    [root@localhost test1]#
  1. 强行删除file,系统不再提示
  • 输入
    1
    rm -f log1.log
  • 输出
    1
    2
    3
    4
    5
    6
    7
    [root@localhost test1]# ll
    总计 4
    -rw-r--r-- 1 root root 23 10-26 14:40 log1.log
    [root@localhost test1]# rm -f log1.log
    [root@localhost test1]# ll
    总计 0
    [root@localhost test1]#
  1. 将test1子目录及子目录中所有档案删除
  • 输入
    1
    rm -r test1
  • 输出
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    [root@localhost test]# ll
    总计 24drwxr-xr-x 7 root root 4096 10-25 18:07 scf
    drwxr-xr-x 2 root root 4096 10-26 14:51 test1
    drwxr-xr-x 3 root root 4096 10-25 17:44 test2
    drwxrwxrwx 2 root root 4096 10-25 17:46 test3
    drwxr-xr-x 2 root root 4096 10-25 17:56 test4
    drwxr-xr-x 3 root root 4096 10-25 17:56 test5
    [root@localhost test]# rm -r test1
    rm:是否进入目录 “test1”? y
    rm:是否删除 一般文件 “test1/log3.log”? y
    rm:是否删除 目录 “test1”? y
    [root@localhost test]# ll
    总计 20drwxr-xr-x 7 root root 4096 10-25 18:07 scf
    drwxr-xr-x 3 root root 4096 10-25 17:44 test2
    drwxrwxrwx 2 root root 4096 10-25 17:46 test3
    drwxr-xr-x 2 root root 4096 10-25 17:56 test4
    drwxr-xr-x 3 root root 4096 10-25 17:56 test5
    [root@localhost test]#
  1. 将test1子目录及子目录中所有档案删除 并不需要二次确认
  • 输入
    1
    rm -rf test1
  • 输出
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    [root@localhost test]# ll
    总计 24drwxr-xr-x 7 root root 4096 10-25 18:07 scf
    drwxr-xr-x 2 root root 4096 10-26 14:51 test1
    drwxr-xr-x 3 root root 4096 10-25 17:44 test2
    drwxrwxrwx 2 root root 4096 10-25 17:46 test3
    drwxr-xr-x 2 root root 4096 10-25 17:56 test4
    drwxr-xr-x 3 root root 4096 10-25 17:56 test5
    [root@localhost test]# rm -r test1
    [root@localhost test]# ll
    总计 20drwxr-xr-x 7 root root 4096 10-25 18:07 scf
    drwxr-xr-x 3 root root 4096 10-25 17:44 test2
    drwxrwxrwx 2 root root 4096 10-25 17:46 test3
    drwxr-xr-x 2 root root 4096 10-25 17:56 test4
    drwxr-xr-x 3 root root 4096 10-25 17:56 test5
    [root@localhost test]#
  1. -f为强制命令,若需要删除以-f开头的文件
  • 输入
    1
    rm -- -f
  • 输出
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    [root@localhost test]# touch -- -f
    [root@localhost test]# ls -- -f
    -f
    [root@localhost test]# rm -- -f
    rm:是否删除 一般空文件 “-f”? y
    [root@localhost test]# ls -- -f
    ls: -f: 没有那个文件或目录
    [root@localhost test]#

    [root@localhost test]# touch ./-f
    [root@localhost test]# ls ./-f
    ./-f
    [root@localhost test]# rm ./-f
    rm:是否删除 一般空文件 “./-f”? y
    [root@localhost test]#
  1. 自定义回收站功能
  • 输入
    1
    myrm(){ D=/tmp/$(date +%Y%m%d%H%M%S); mkdir -p $D; mv "$@" $D && echo "moved to $D ok"; }
  • 输出
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    [root@localhost test]# myrm(){ D=/tmp/$(date +%Y%m%d%H%M%S); mkdir -p $D; 	mv "$@" $D && echo "moved to $D ok"; }
    [root@localhost test]# alias rm='myrm'
    [root@localhost test]# touch 1.log 2.log 3.log
    [root@localhost test]# ll
    总计 16
    -rw-r--r-- 1 root root 0 10-26 15:08 1.log
    -rw-r--r-- 1 root root 0 10-26 15:08 2.log
    -rw-r--r-- 1 root root 0 10-26 15:08 3.log
    drwxr-xr-x 7 root root 4096 10-25 18:07 scf
    drwxrwxrwx 2 root root 4096 10-25 17:46 test3
    drwxr-xr-x 2 root root 4096 10-25 17:56 test4
    drwxr-xr-x 3 root root 4096 10-25 17:56 test5
    [root@localhost test]# rm [123].log
    moved to /tmp/20121026150901 ok
    [root@localhost test]# ll
    总计 16drwxr-xr-x 7 root root 4096 10-25 18:07 scf
    drwxrwxrwx 2 root root 4096 10-25 17:46 test3
    drwxr-xr-x 2 root root 4096 10-25 17:56 test4
    drwxr-xr-x 3 root root 4096 10-25 17:56 test5
    [root@localhost test]# ls /tmp/20121026150901/
    1.log 2.log 3.log
    [root@localhost test]#