在目录中,您有一些不同的文件 - .txt
,.sh
,然后计划没有.foo
修饰符的文件。
如果您ls
目录:
blah.txt
blah.sh
blah
blahs
如何告诉for-loop仅使用没有.foo
修改的文件?因此,在上面的例子中,对文件进行“捣乱”等等。
基本语法是:
#!/bin/bash
FILES=/home/shep/Desktop/test/*
for f in $FILES
do
XYZ functions
done
正如您所看到的,这有效地循环遍历目录中的所有内容。如何排除.sh
,.txt
或任何其他修饰符?
我一直在玩一些if语句,但如果我可以选择那些未修改的文件,我真的很好奇。
也可以有人告诉我这些没有.txt的纯文本文件的正确行话吗?
答案 0 :(得分:30)
#!/bin/bash
FILES=/home/shep/Desktop/test/*
for f in $FILES
do
if [[ "$f" != *\.* ]]
then
DO STUFF
fi
done
答案 1 :(得分:12)
如果您希望它更复杂一些,可以使用find-command。
对于当前目录:
for i in `find . -type f -regex \.\\/[A-Za-z0-9]*`
do
WHAT U WANT DONE
done
说明:
find . -> starts find in the current dir
-type f -> find only files
-regex -> use a regular expression
\.\\/[A-Za-z0-9]* -> thats the expression, this matches all files which starts with ./
(because we start in the current dir all files starts with this) and has only chars
and numbers in the filename.
答案 2 :(得分:1)
你可以使用负面通配符吗?过滤掉它们:
$ ls -1
a.txt
b.txt
c.png
d.py
$ ls -1 !(*.txt)
c.png
d.py
$ ls -1 !(*.txt|*.py)
c.png