slackbuilds/rebuild-and-install-all.sh

16 lines
368 B
Bash
Raw Normal View History

#!/bin/bash
WD=/home/installs/SlackBuilds
CAT=${CAT:-$1}
cd $WD
2024-11-27 10:40:55 +01:00
./what-s_installed.sh | grep "^| x .*" | cut -d\ -f2 | grep "^${CAT}/.*"
2023-03-24 13:08:00 +01:00
echo "Ctrl-C to stop here, enter to continue"
read
2024-11-27 10:40:55 +01:00
for p in $(./what-s_installed.sh | grep "^| x .*" | cut -d\ -f2 | grep "^${CAT}/.*"); do
(cd $p
bash -e ./SlackBuild || echo "ERROR $p" >> $WD/_errors_rebuild)
done