mbp-manjaro/Scripts/repo-all-editions.sh

14 lines
284 B
Bash
Raw Normal View History

#!/bin/bash
2020-09-09 20:01:14 -04:00
for f in ../manjaro/*; do
if [ -d "$f" ]; then
ln -sf ../../user-repos.conf ../manjaro/"$f"/user-repos.conf
fi
done
2020-09-09 19:59:59 -04:00
2020-09-09 20:01:14 -04:00
for f in ../community/*; do
2020-09-09 19:59:59 -04:00
if [ -d "$f" ]; then
ln -sf ../../user-repos.conf ../community/"$f"/user-repos.conf
2020-09-09 19:59:59 -04:00
fi
done