alias la='ls -A'
alias ll='ls -Al'
alias l1='ls -1'
-alias l.='ls -d .*'
+alias l.='ls -d .[a-z]*'
flags="-hF"
# Detect which `ls` flavor is in use
# Stopwatch
alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date'
-# Intuitive map function
-# For example, to list all directories that contain a certain file:
-# find . -name .gitattributes | map dirname
-alias map="xargs -n1"
-
-for method in GET HEAD POST PUT DELETE TRACE OPTIONS; do
- alias "$method"="lwp-request -m '$method'"
-done
-
# Reload the shell (i.e. invoke as a login shell)
alias reload="exec $SHELL -l"