etc/dot/install.rc
2020-11-04 04:03:20 +05:00

10 lines
156 B
Bash
Executable file

#!/bin/env rc
rpath = `{dirname `{readlink -f $0}}
dot = $rpath/file
for(i in $dot/*){
ln = $home/.`{basename $i}
rm -f $ln
echo $ln $i
ln -s $i $ln
}