0
for subdir in */ ; do
cd $subdir
ffmpeg -i mycode
如果文件夾名稱包含foo,我該如何排除ffmpeg命令?在文件夾名稱中查找文本cointain並跳過它
我使用命令查找,是否正確?
find . -name *foo* -print
但我不能在bash for循環中實現它。
我試過這段代碼:
for subdir in */ ; do
foo=$(find -type d -name '*foo*')
if [[ $subdir =~ $foo ] ; then
echo yes
ffmpeg -i mycode
else
echo no
fi
done
非常感謝 – pasaico