blob: f298e9bac44f41ae4e16cea1d603da7556eeb6ce (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
# Given a tracking reference either as first argument or piped in,
# open in $BROWSER, or xdg-open, the tracking site for that reference.
# TODO: actually finish implementing.
xdg-open "https://www.evri.com/track/parcel/$1/details"
xdg-open "https://www.royalmail.com/track-your-item#/tracking-results/$1"
|