From 6c7e55d54d7d77e09b449781668093738500ac1e Mon Sep 17 00:00:00 2001 From: renatoxsr Date: Sun, 9 Oct 2022 13:48:48 -0300 Subject: [PATCH] Created "pacman/remove-orphans.sh" Simples `sudo pacman -Rs $(pacman -Qtdq)` shell script Signed-off-by: renatoxsr --- pacman/remove-orphans.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pacman/remove-orphans.sh diff --git a/pacman/remove-orphans.sh b/pacman/remove-orphans.sh new file mode 100644 index 0000000..6b4a6a4 --- /dev/null +++ b/pacman/remove-orphans.sh @@ -0,0 +1,3 @@ +#!/bin/sh +echo "Removing Orphans..." +sudo pacman -Rs $(pacman -Qtdq) \ No newline at end of file