View difference between Paste ID: 7wpT3fhJ and BF0Msi8F
SHOW: | | - or go back to the newest paste.
1
#!/bin/bash
2
for cartella in $(ls -d Arch3_*)
3
do
4
5
   if [ -d $cartella  ]
6
       then
7
       cd ./$cartella/calculations/
8
       sh 1st_to_2nd.sh
9
       cd ..
10
   fi
11
done