Skip to content

Commit

Permalink
Merge pull request #52 from LoganKaval/main
Browse files Browse the repository at this point in the history
New Alias
  • Loading branch information
ChrisTitusTech authored Jun 29, 2024
2 parents 95b24b6 + 52197c5 commit 89c21d0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ alias vi='nvim'
alias svi='sudo vi'
alias vis='nvim "+set si"'


# Change directory aliases
alias home='cd ~'
alias cd..='cd ..'
Expand All @@ -171,9 +172,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 89c21d0

Please sign in to comment.