询问UNIX的一个命令应该怎么写

来源:百度知道 编辑:UC知道 时间:2024/06/07 05:21:17
老板让我搞unix的命令,我真的不怎么懂唉……

Inside a folder with many different kinds of files
please figure out a unix command that can tell me what are the name of files
that is not with .bz2 extentions
这个命令应该怎么写呢,谢谢各位达人了!!!

find . -not -name '*.bz2' -print

...................
你用不了wild case
用regular expression就可以了么.....
和win不太一样,linux除了对wild case支持,对regular expression支持也非常好

tar -txvf ???