aboutsummaryrefslogtreecommitdiff
path: root/update.sh
blob: 928ba06690a261cf454bdc07a41df942345ddc27 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

# Find scripts and create symlinks

binfiles=$(ls -1 $(pwd)/bin)
for b in $binfiles
do
	if [[ ! -L $BINDIR/$b ]] ; then ln -s $(pwd)/bin/$b $BINDIR/$b ;fi
done