Created
May 10, 2016 10:43
-
-
Save benkant/b3ffc00a7c865a60fbc9aa77c987e5b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# https://github.com/lindes/get-location | |
# home is where you throw your rug | |
prog=~/code/get-location/get-location | |
echo "" >> "$1" | |
if [ -x "$prog" ] | |
then | |
$prog >> "$1" | |
else | |
echo "Location: " >> "$1" | |
fi | |
#echo "airplane" >> "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment