我想编写一个脚本来遍历两个不同目录中的文件,并回显不同文件名模式的文件我这样制作了一个,但这是不合适的
#Files in one dir ABC-123-1.txt
#Files in subdir ABC-123.doc
for f in *.doc
do
f1=`echo $f|sed 's/.doc//g`'
for f2 in ../*.txt
do
f3=`echo $f2|sed 's/..\///g'|sed 's/-1.txt//g'`
if [ "$f1" != "$f3" ]
then
echo $f3
fi
done
done