Created
November 19, 2016 11:05
-
-
Save ldante86/46f19b72e90242f1c4827ef9e0eaeea9 to your computer and use it in GitHub Desktop.
track usps shipments
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 | |
if [ ! $1 ]; then | |
echo usage: "${0##*/}" label | |
exit 1 | |
else | |
/usr/bin/firefox \ | |
-new-window \ | |
https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1=$1 & | |
clear | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment