Compare commits

..

2 Commits

Author SHA1 Message Date
Ray Elliott 31d8b302cf add help option 2020-02-25 09:21:03 +00:00
Ray Elliott b21c4430ec add option to overwrite 2020-02-25 09:12:33 +00:00
1 changed files with 16 additions and 2 deletions

View File

@ -1,23 +1,37 @@
#!/bin/sh #!/bin/sh
_install_dir="/usr/local/bin/" _install_dir="/usr/local/bin/"
_uninstall=0 _uninstall=0
_overwrite=0
_exit_status=0
_show_help=0
for _arg in "$@" ; do for _arg in "$@" ; do
if [ "$_arg" = "-u" ] || [ "$_arg" = "--uninstall" ] ; then if [ "$_arg" = "-u" ] || [ "$_arg" = "--uninstall" ] ; then
_uninstall=1 _uninstall=1
elif [ "$_arg" = "-o" ] || [ "$_arg" = "--overwrite" ] ; then
_overwrite=1
elif [ "$_arg" = "-h" ] || [ "$_arg" = "--help" ] ; then
_show_help=1
else else
echo "warning: unknown option." echo "warning: unknown option."
exit 1 _show_help=1
fi fi
done done
if [ "$_show_help" -eq 1 ] ; then
echo ""
echo "TODO - Show Help"
echo "Look at source code for now - there's only two options."
exit "$_exit_status"
fi
echo "Install directory: '$_install_dir'" echo "Install directory: '$_install_dir'"
echo "" echo ""
for _file in ./src/* ; do for _file in ./src/* ; do
_destination="$_install_dir"$(basename "$_file") _destination="$_install_dir"$(basename "$_file")
if [ $_uninstall -eq 0 ] ; then if [ $_uninstall -eq 0 ] ; then
if ! [ -e "$_destination" ] ; then if [ ! -e "$_destination" ] || [ "$_overwrite" -eq 1 ] ; then
echo "installing: $_file" echo "installing: $_file"
sudo cp "$_file" "$_install_dir" sudo cp "$_file" "$_install_dir"
else else