From ea936540b3c6347b5676637058cead2f7a32f415 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Thu, 28 May 2020 13:29:02 -0400 Subject: [PATCH] Comments and stuff --- zsh/modules/alias/init.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh/modules/alias/init.zsh b/zsh/modules/alias/init.zsh index 6ad551b..5ce7dbb 100644 --- a/zsh/modules/alias/init.zsh +++ b/zsh/modules/alias/init.zsh @@ -8,11 +8,16 @@ alias ls="ls $color_flag" alias l="ls -lh $color_flag" alias la="ls -lha $color_flag" +# Get the most recently modified object in the current directory. alias lf="ls -1tr | tail -n 1" alias docker="sudo docker" alias dc="sudo docker-compose" +# Goes to a temp folder. This will be deleted on restart. +alias tmp="cd $(mktemp -d)" + alias :q="exit" +# Because sometimes asking nicely gets things done. alias please="sudo"