etc/dot/install.sh
2024-07-11 03:23:39 +05:00

11 lines
176 B
Bash
Executable file

#!/bin/sh
rpath="$(dirname `readlink -f $0`)"
dot="$rpath/file"
cmd="$@"
for i in $dot/* ; do
ln="$HOME/.`basename $i`"
rm -rf "$ln"
echo $ln $i
ln -s -f "$i" "$ln"
done