Under a directory called a there are many subfolders where I want to do something. The same for all. I do the following but it applies only to the first subdirectory:
for i in "a/*"
do
#echo $i
cd $i
mkdir test
mv *_no test
touch aaa
cd ..
done
The above code I want to be executed in every directory under a.

