Commit 25adbe81 authored by Andrew Hodges's avatar Andrew Hodges

Aliases

Modify directory listing aliases to make more sense. Remove conflicting helper
function (mcd conflicts with mtools).
parent ed990f61
...@@ -16,8 +16,9 @@ alias history='fc -l 1' ...@@ -16,8 +16,9 @@ alias history='fc -l 1'
# List direcory contents # List direcory contents
alias lsa='ls -lah' alias lsa='ls -lah'
alias l='ls -la' alias l='ls -lA1'
alias ll='ls -l' alias ll='ls -l'
alias la='ls -lA'
alias sl=ls # often screw this up alias sl=ls # often screw this up
alias afind='ack-grep -il' alias afind='ack-grep -il'
......
...@@ -37,8 +37,3 @@ cd () { ...@@ -37,8 +37,3 @@ cd () {
alias md='mkdir -p' alias md='mkdir -p'
alias rd=rmdir alias rd=rmdir
alias d='dirs -v' alias d='dirs -v'
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment