diff options
Diffstat (limited to 'scripts/clear-pacman-cache')
-rwxr-xr-x | scripts/clear-pacman-cache | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/clear-pacman-cache b/scripts/clear-pacman-cache new file mode 100755 index 0000000..3891796 --- /dev/null +++ b/scripts/clear-pacman-cache @@ -0,0 +1,9 @@ +#!/bin/sh + +if [[ $UID -eq 0 ]] +then + paccache -r + paccache -ruk0 +else + echo "You need to be root!" +fi |