blob: 945174c1a1d0e4247935ca29c5f328180c68ef5b (
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 $AK_BINDIR/$b ]] ; then ln -s $(pwd)/bin/$b $AK_BINDIR/$b ;fi
done
|