no aliasing of readlink

This commit is contained in:
Ivan Malison 2015-11-24 01:30:41 -05:00
parent 9915f4b690
commit 59d399ffec

View File

@ -30,7 +30,8 @@ alias whois="whois -h whois-servers.net"
# View HTTP traffic # View HTTP traffic
alias sniff="sudo ngrep -d 'en1' -t '^(GET|POST) ' 'tcp and port 80'" alias sniff="sudo ngrep -d 'en1' -t '^(GET|POST) ' 'tcp and port 80'"
alias httpdump="sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E \"Host\: .*|GET \/.*\"" alias httpdump="sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E \"Host\: .*|GET \/.*\""
command -v greadlink > /dev/null && alias readlink="greadlink" # The alias below is no longer needed when gnu readlink is on path as readlink
# command -v greadlink > /dev/null && alias readlink="greadlink"
# Merge PDF files # Merge PDF files
# Usage: `mergepdf -o output.pdf input{1,2,3}.pdf` # Usage: `mergepdf -o output.pdf input{1,2,3}.pdf`