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

20 lines
342 B
Bash
Executable File

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