Skip to content

Instantly share code, notes, and snippets.

@ldante86
Created November 19, 2016 11:05
Show Gist options
  • Save ldante86/46f19b72e90242f1c4827ef9e0eaeea9 to your computer and use it in GitHub Desktop.
Save ldante86/46f19b72e90242f1c4827ef9e0eaeea9 to your computer and use it in GitHub Desktop.
track usps shipments
$!/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