8 lines
127 B
Bash
Executable File
8 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ -d ${HOME}/bin ]
|
|
mkdir ${HOME}/bin
|
|
for f in $(ls bin/* --color=no) ; do ln -s $f ${HOME}/${f%.sh}; done
|
|
|
|
exit 0
|