From 59d399ffec941b6917e7b0240fe2bfd7e374ebab Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 24 Nov 2015 01:30:41 -0500 Subject: [PATCH] no aliasing of readlink --- dotfiles/lib/shellrc/aliases.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotfiles/lib/shellrc/aliases.sh b/dotfiles/lib/shellrc/aliases.sh index daded984..0fcfbbac 100644 --- a/dotfiles/lib/shellrc/aliases.sh +++ b/dotfiles/lib/shellrc/aliases.sh @@ -30,7 +30,8 @@ alias whois="whois -h whois-servers.net" # View HTTP traffic 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 \/.*\"" -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 # Usage: `mergepdf -o output.pdf input{1,2,3}.pdf`