mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
7 lines
277 B
Bash
7 lines
277 B
Bash
|
#!/bin/bash
|
||
|
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||
|
echo -n "Installing weather: "
|
||
|
chmod a+x weather
|
||
|
cp weather /usr/local/bin > /dev/null 2>&1 || { echo "Failure"; echo "Error copying file, try running install script as sudo"; exit 1; }
|
||
|
echo "Success"
|