etc/install.sh

12 lines
184 B
Bash
Raw Normal View History

2024-07-11 01:23:39 +03:00
#!/bin/sh
mkdir -p $HOME/.config
rpath="$(dirname `readlink -f $0`)"
for i in * ; do
from="$rpath/$i"
to="$HOME/.config/`basename $i`"
echo $from $to
ln -s -f "$from" "$to"
done