summaryrefslogtreecommitdiff
path: root/scripts/clear-pacman-cache
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/clear-pacman-cache')
-rwxr-xr-xscripts/clear-pacman-cache9
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