portage-conf/link.sh
2020-11-24 14:24:42 +02:00

12 lines
224 B
Bash
Executable File

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