[rm]在“ rm -rf filename [co]”命令中是什么意思?
假设我在中有两个文件/tmp: root@ubuntu:~# touch /tmp/hello.{pyc,py} root@ubuntu:~# ls /tmp/ hello.py hello.pyc 现在,让运行rm -rf带有[co]选项的命令 root@ubuntu:~# rm -rf /tmp/hello.py[co] root@ubuntu:~# ls /tmp/ hello.py 有人可以解释一下这里发生了什么吗?是什么[co]参数?我们如何使它适用于其他扩展?说我有foo.js和foo.coffee文件,我们可以做些rm -rf /tmp/foo.coffe[co]删除/tmp/foo.js吗?