diff options
author | Raúl Benencia <rul@kalgan.cc> | 2019-06-25 09:41:04 -0700 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2019-06-25 09:41:04 -0700 |
commit | ba00c4f39af4916c8d652c9df2fcb7bd26d26eca (patch) | |
tree | 57630e96ace12113a9be792bf223f969526d4d23 /.bashrc | |
parent | 55977a3c31b231cffc7cb2e3b25a634c212faf16 (diff) |
Include links while searching for alias
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ fi # aliases if [ -e ~/.alias.d/ ]; then - for e in $(find ~/.alias.d/ -type f); do + for e in $(find ~/.alias.d/ -type l,f); do . $e done fi |