diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-01-24 18:20:54 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-01-24 18:20:54 +0300 |
commit | fc4a56c1e06f1dc2d41b61ca8edc857d2a0dd1cd (patch) | |
tree | 778665ec7a0f126aa8e16ccb6f6ca1d1c35b6a69 /%HOME% | |
parent | sed: --follow-symlinks (diff) | |
download | linux-home-fc4a56c1e06f1dc2d41b61ca8edc857d2a0dd1cd.tar.gz linux-home-fc4a56c1e06f1dc2d41b61ca8edc857d2a0dd1cd.zip |
sed --follow-symlinks doesn't work w/ sed 4.2.2
Diffstat (limited to '%HOME%')
-rw-r--r-- | %HOME%/.bashrc | 5 |
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' |