aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%/.bashrc
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-01-24 18:20:54 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-01-24 18:20:54 +0300
commitfc4a56c1e06f1dc2d41b61ca8edc857d2a0dd1cd (patch)
tree778665ec7a0f126aa8e16ccb6f6ca1d1c35b6a69 /%HOME%/.bashrc
parentsed: --follow-symlinks (diff)
downloadlinux-home-fc4a56c1e06f1dc2d41b61ca8edc857d2a0dd1cd.tar.gz
linux-home-fc4a56c1e06f1dc2d41b61ca8edc857d2a0dd1cd.zip
sed --follow-symlinks doesn't work w/ sed 4.2.2
Diffstat (limited to '')
-rw-r--r--%HOME%/.bashrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc
index 82b3ee2..0cae950 100644
--- a/%HOME%/.bashrc
+++ b/%HOME%/.bashrc
@@ -30,7 +30,10 @@ alias dir='ls --format=vertical'
alias less='less --ignore-case --RAW-CONTROL-CHARS'
alias tree='tree -a'
-alias sed='sed --follow-symlinks'
+# alias sed='sed --follow-symlinks'
+# The alias above doesn't actually work with stdin in sed 4.2.2, it's a bug
+# fixed in sed 4.3.
+# Don't forget to uncomment once sed 4.3 becomes common.
alias ssh-copy-id='ssh-copy-id -i'