How to rename diretories that have the same name
for i in `find -maxdepth 3 -name wntmsci12.pro`
do
mv -f $i `echo $i | sed 's/wntmsci12.pro/wntmsci12.pro--/g'`
done
How to rename diretories that have the same name
for i in `find -maxdepth 3 -name wntmsci12.pro`
do
mv -f $i `echo $i | sed 's/wntmsci12.pro/wntmsci12.pro--/g'`
done