]> git.zndr.dk Git - dotfiles.git/commitdiff
Update ls to not show . and ..
authorJannik Zander <jannikz@gmail.com>
Wed, 25 May 2016 18:19:44 +0000 (20:19 +0200)
committerJannik Zander <jannikz@gmail.com>
Wed, 25 May 2016 18:19:44 +0000 (20:19 +0200)
.config/bash/rc/aliases

index 79229a45be18ecd26fd79cb8d3942fac581f7336..ba501040fd2f5b6fb648f369f929ae05b12cdfdf 100644 (file)
@@ -12,7 +12,7 @@ alias sl=ls
 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
@@ -88,15 +88,6 @@ alias week='date +%V'
 # 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"