8 lines
184 B
Text
8 lines
184 B
Text
|
#!/bin/bash
|
||
|
if [ ! -f "/usr/bin/pacman-key" ]; then
|
||
|
echo ":: Error: You are not running a Arch Linux based distro."
|
||
|
exit 1
|
||
|
fi
|
||
|
pacman -Scc --noconfirm
|
||
|
echo ":: Purged pacman caches."
|