aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/rm_hardinfo.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/rm_hardinfo.sh b/tools/rm_hardinfo.sh
index 81b5c614..7b4480a8 100755
--- a/tools/rm_hardinfo.sh
+++ b/tools/rm_hardinfo.sh
@@ -10,15 +10,15 @@ fi
remove_hardinfo() {
BASEDER="$1"
echo "Removing hardinfo* from $BASEDER ..."
- rm -rf "$BASEDER/share/hardinfo*"
- rm -rf "$BASEDER/lib/hardinfo*"
- rm -f "$BASEDER"/share/locale/*/LC_MESSAGES/hardinfo*.mo
- rm -f "$BASEDER/bin/hardinfo*"
- rm -f "$BASEDER/share/applications/hardinfo*.desktop"
- rm -f "$BASEDER/share/doc/hardinfo*"
- rm -f "$BASEDER/share/man/man1/hardinfo*.1.gz"
- rm -f "$BASEDER/share/pixmaps/hardinfo*.xpm"
- rm -f "$BASEDER/share/menu/hardinfo*"
+ rm -rf $BASEDER/share/hardinfo*
+ rm -rf $BASEDER/lib/hardinfo*
+ rm -f $BASEDER/share/locale/*/LC_MESSAGES/hardinfo*.mo
+ rm -f $BASEDER/bin/hardinfo*
+ rm -f $BASEDER/share/applications/hardinfo*.desktop
+ rm -f $BASEDER/share/doc/hardinfo*
+ rm -f $BASEDER/share/man/man1/hardinfo*.1.gz
+ rm -f $BASEDER/share/pixmaps/hardinfo*.xpm
+ rm -f $BASEDER/share/menu/hardinfo*
#locate -e hardinfo | grep "$BASEDER"
}