From e577f4a80cf507fdf9cb6d85ae17ce8496de2ac0 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Tue, 1 Mar 2022 14:36:19 +0100 Subject: [PATCH] helper scripts Signed-off-by: Gwenhael Le Moine --- rebuild-and-install-all.sh | 11 +++++++++++ update-all-pip_gwh.sh | 0 2 files changed, 11 insertions(+) create mode 100755 rebuild-and-install-all.sh mode change 100644 => 100755 update-all-pip_gwh.sh diff --git a/rebuild-and-install-all.sh b/rebuild-and-install-all.sh new file mode 100755 index 00000000..3047845f --- /dev/null +++ b/rebuild-and-install-all.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +WD=/home/installs/SlackBuilds +CAT=${CAT:-$1} +for p in $(./what-s_installed.sh | grep -v "^❌.*" | cut -d\ -f2 | grep "^$CAT.*"); do + cd $p + echo -n "$p : " + ls + ./SlackBuild + cd $WD +done diff --git a/update-all-pip_gwh.sh b/update-all-pip_gwh.sh old mode 100644 new mode 100755