我正在尝试列出所有不以.tar *或* .tgz结尾的内容
例如
directory1/
ls -ltr *
06062018.tar.gz
06062018.tar.tgz
06062018.tgz
06062018/
directory2/06062018.tar.gz
directory3/06062018.tar.tgz
directory4/06062018.tgz
directory5/06062018/
directory6/06062018.1/
期望输出为:
0606218/
directory5/06062018/
directory6/06062018.1/
我研究的内容:
RegEx - Find everything that does not contain a pattern
List all files that do not match selector (using ls)
List files not matching a pattern?
How to display list of all files not ending with .txt using ls command and regex?
我尝试过的事情: ls -ltr * | grep -v $ tar.gz
ls -ltr * !(*.tar.gz)
find ./* -maxdepth 1 ! -path "*tar.*"
find . -maxdepth 1 ! -path "[*.tar.gz|*tgz]"
ls -ltr | grep -v "[*tar*|*tgz]"
ls -ltr */* --ignore=*.tar.gz --ignore=*tgz
ls -ltr ./* --ignore=*.tar* --ignore=*tgz
答案 0 :(得分:1)
只需使用两个! -name
模式。
find * -maxdepth 1 ! -name '*.tar*' ! -name '*.tgz'