commit fc305cb7693d6ae5f718bee08c86c2e7b29e0da1
parent dc2157fbb8749eebbd4ab54d36805b98214fed24
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date: Sun, 12 May 2013 11:25:45 +0200
l alias doesnt show hidden files, ll alias does
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/.zshrc b/.zshrc
@@ -54,6 +54,7 @@ export PATH=/usr/local/cuda-5.0/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda-5.0/lib64:/usr/local/cuda-5.0/lib:$LD_LIBRARY_PATH
alias l='ls -lh'
+alias ll='ls -lha'
# speech synth command
say() { if [[ "${1}" =~ -[a-z]{2} ]]; then local lang=${1#-}; local text="${*#$1}"; else local lang=${LANG%_*}; local text="$*";fi; mplayer "http://translate.google.com/translate_tts?ie=UTF-8&tl=${lang}&q=${text}" &> /dev/null ; }