Added alias for the most recent file.

Useful for things like `tail -f $(ls)`.
This commit is contained in:
James Patrick 2020-01-13 14:20:44 -05:00
parent cfc6cd3a0b
commit 3127de63fa
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@ alias ls="ls $color_flag"
alias l="ls -lh $color_flag"
alias la="ls -lha $color_flag"
alias lf="ls -1tr | tail -n 1"
alias docker="sudo docker"
alias dc="sudo docker-compose"