假设我有两个文件/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
吗?