OSCAR-code/Building/Linux/clean_rm-common-NN.sh

20 lines
342 B
Bash
Raw Permalink Normal View History

# 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