Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
Gwenhael Le Moine 2022-03-01 15:25:33 +01:00
parent e577f4a80c
commit b0294e1fde
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -2,10 +2,12 @@
WD=/home/installs/SlackBuilds
CAT=${CAT:-$1}
cd $WD
./what-s_installed.sh | grep -v "^❌.*" | cut -d\ -f2 | grep "^$CAT.*"
for p in $(./what-s_installed.sh | grep -v "^❌.*" | cut -d\ -f2 | grep "^$CAT.*"); do
cd $p
echo -n "$p : "
ls
./SlackBuild
bash -e ./SlackBuild
cd $WD
done