Skip to content
Snippets Groups Projects
Commit 460c0cf9 authored by eisenale's avatar eisenale
Browse files

added more cd functionality; users can now use cs to run cd directory followed...

added more cd functionality; users can now use cs to run cd directory followed by ls and .. runs cd .. ... runs cd ../.. etc.
parent 827caa6f
Branches master
No related tags found
No related merge requests found
.bashrc 100644 → 100755
function cs {
cd $1
ls
}
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
export EDITOR=vim
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment