bashrc & zshrc: use -F instead of -f with tail in follow alias.

This commit is contained in:
Mikaela Suomalainen 2014-05-16 17:30:09 +03:00
parent 4b9d243237
commit 728c90529e
2 changed files with 2 additions and 2 deletions

2
bashrc
View File

@ -404,7 +404,7 @@ alias http.debian.net="curl -sL http://http.debian.net/debian/project/trace/|pan
alias gpg-key-amount="gpg --list-keys|grep '^pub'|wc -l"
alias gpg-key-count="gpg --export -a|gpg --import"
alias follow="tail -f "
alias follow="tail -F"
#myip shows current IP. This was a function.
alias myip="curl -s http://icanhazip.com"

2
zshrc
View File

@ -376,7 +376,7 @@ alias http.debian.net="curl -sL http://http.debian.net/debian/project/trace/|pan
alias gpg-key-amount="gpg --list-keys|grep '^pub'|wc -l"
alias gpg-key-count="gpg --export -a|gpg --import"
alias follow="tail -f "
alias follow="tail -F"
#myip shows current IP. This was a function.
alias myip="curl -s http://icanhazip.com"