Merge pull request #1991 from noviicee/issue-1206

Added alias ls='ls -F'
pull/2007/head
Noah Gorny 2022-01-07 09:10:44 +02:00 committed by GitHub
commit b846c86dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ alias la='ls -AF' # Compact view, show hidden
alias ll='ls -al'
alias l='ls -a'
alias l1='ls -1'
alias lf='ls -F'
alias _="sudo"

View File

@ -13,3 +13,4 @@ test -n "$LS_COMMON" && alias ls="command ls $LS_COMMON"
alias ll="ls -l"
alias la="ls -a"
alias lal="ll -a"
alias lf="ls -F"