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 | |
RETVAL=1 | |
while [ "$RETVAL" -eq "1" ]; do | |
sleep 1m | |
PAGECONTENT=$(wget "http://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=$1" --quiet -O -) | |
RETVAL=$? | |
if [ "$RETVAL" -eq "0" ]; then | |
echo "$PAGECONTENT" | grep -q Delivered | |
RETVAL=$? | |
fi |
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
echo $(grep -rIn "$@" | cut -d":" -f1-2 --output-delimiter=" -n" | rev | uniq -f1 | rev ) | xargs -n2 npp & |
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
##### Aliases ##### | |
#Shortcuts | |
alias mysql="mysql -u root" | |
#Processes and Ports | |
alias fp="ps -ef | grep -i " | |
alias fpp="lsof -i -P | grep -i listen" | |
#Git |