portage-conf/link.sh
2020-07-03 11:21:03 +03:00

12 lines
174 B
Bash
Executable File

#!/bin/sh
files=($(ls $PWD))
dest="/etc/portage/"
for file in "${files[@]}"; do
# Ignore link.sh
if [ "$file" != "link.sh" ]; then
ln -sf "$PWD/$file" "$dest"
fi
done