Last active
January 5, 2016 05:49
-
-
Save audy/ca89fd14f71c7bb31e6f 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/bash | |
export PATH='/usr/local/bin:$PATH' | |
ansiweather -a off -l 'San Francisco' \ | |
| cut -d '>' -f 2 \ | |
| cut -d '-' -f1 \ | |
| awk '{ print $1 $2 }' \ | |
| tr -d 'C' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment