dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 7a0e534b87dd24825f52c74df70e7edb067d8c3e
parent f7fee645123b957990097b38c90d6009d6b92c7b
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Thu,  1 Dec 2016 22:01:04 -0800

Bash: Add another 'cd ..' alias

Diffstat:
bashrc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/bashrc b/bashrc @@ -95,6 +95,7 @@ fi alias ..='cd ..' alias ...='cd ../..' alias ....='cd ../../..' +alias .....='cd ../../../..' # better ls-ing alias ll='ls -alF'