From eefa95f629b11ee96e514e83b50648b814cb660e Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 10 Apr 2016 23:00:40 +0300
Subject: [PATCH] - ll alias lists all files including . and .. . - docker
 clean removes created but not run containers.

---
 .bashrc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.bashrc b/.bashrc
index fc5d733..f16fae6 100644
--- a/.bashrc
+++ b/.bashrc
@@ -38,7 +38,7 @@ export EDITOR=vim
 export GOPATH=$HOME/Documents/Golang
 export PATH=$PATH:$GOPATH/bin:/usr/lib/go/bin/
 export PYTHONSTARTUP=~/.pythonstartup
-alias ll='ls -lh'
+alias ll='ls -lha'
 alias la='ls -A'
 alias l='ls -CF'
 alias gcc='gcc --std=c99 -Wall'
@@ -71,6 +71,7 @@ docker () {
     case "$1" in
         clean)
             $docker_exec rm $(docker ps --quiet --filter=status=exited)
+            $docker_exec rm $(docker ps --quiet --filter=status=created)
             $docker_exec rmi $(docker images --quiet --filter=dangling=true)
             ;;
         *)
-- 
GitLab