Skip to content

Commit

Permalink
New Alias
Browse files Browse the repository at this point in the history
  • Loading branch information
LoganKaval authored Jun 3, 2024
1 parent 5282e57 commit 52197c5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ alias freshclam='sudo freshclam'
alias vi='nvim'
alias svi='sudo vi'
alias vis='nvim "+set si"'
alias lla='ls -Al'
alias la='ls -A'
alias ll='ls -l'


# Change directory aliases
alias home='cd ~'
Expand Down Expand Up @@ -166,9 +164,12 @@ alias lt='ls -ltrh' # sort by date
alias lm='ls -alh |more' # pipe through 'more'
alias lw='ls -xAh' # wide listing format
alias ll='ls -Fls' # long listing format
alias labc='ls -lap' #alphabetical sort
alias labc='ls -lap' # alphabetical sort
alias lf="ls -l | egrep -v '^d'" # files only
alias ldir="ls -l | egrep '^d'" # directories only
alias lla='ls -Al' # List and Hidden Files
alias las='ls -A' # Hidden Files
alias lls='ls -l' # List

# alias chmod commands
alias mx='chmod a+x'
Expand Down

0 comments on commit 52197c5

Please sign in to comment.