Skip to content

Commit

Permalink
Merge pull request #50 from nahilrasheed/main
Browse files Browse the repository at this point in the history
Fixed sorting in ls aliases
  • Loading branch information
ChrisTitusTech authored Jun 29, 2024
2 parents 28de371 + 954efc6 commit 744881a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ alias la='ls -Alh' # show hidden files
alias ls='ls -aFh --color=always' # add colors and file type extensions
alias lx='ls -lXBh' # sort by extension
alias lk='ls -lSrh' # sort by size
alias lc='ls -lcrh' # sort by change time
alias lu='ls -lurh' # sort by access time
alias lc='ls -ltcrh' # sort by change time
alias lu='ls -lturh' # sort by access time
alias lr='ls -lRh' # recursive ls
alias lt='ls -ltrh' # sort by date
alias lm='ls -alh |more' # pipe through 'more'
Expand Down

0 comments on commit 744881a

Please sign in to comment.