mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
20 lines
342 B
Bash
Executable File
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
|
|
|