27 lines
392 B
Bash
Executable File
27 lines
392 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Installs a new script(s) into the configured location
|
|
dest='/usr/bin/'
|
|
|
|
if [ "$1" = "" ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
if [ ! "`whoami`" = "root" ]
|
|
then
|
|
echo Please run this as root!
|
|
exit
|
|
fi
|
|
|
|
for item in $@; do
|
|
name="`basename $item`"
|
|
if [ -f "/usr/bin/$name" ]
|
|
then
|
|
rm -f "/usr/bin/$name"
|
|
fi
|
|
echo 'ln -s ' "`pwd`/$item" "/usr/bin/$name"
|
|
ln -s "`pwd`/$item" "/usr/bin/$name"
|
|
done
|
|
|