rice/new

27 lines
392 B
Plaintext
Raw Normal View History

2019-07-04 21:07:25 +00:00
#!/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