OSCAR-code/Building/Linux/clean_rm-common-NN.old
2022-02-17 22:32:27 -05:00

17 lines
276 B
Plaintext
Executable File

# begin common script shell
# delete all the folder not deleted by the purge command
echo "appli_name=${appli_name}"
list=$(find /usr -name ${appli_name} 2>/dev/null)
for folder in $list
do
echo "to delete : '$folder'"
rm -r $folder
done
# end common script shell