add more aliases to bash_aliases
This commit is contained in:
parent
9a4e6dd41c
commit
4a595f9f8c
1 changed files with 15 additions and 0 deletions
|
|
@ -1 +1,16 @@
|
||||||
alias gs="git status"
|
alias gs="git status"
|
||||||
|
|
||||||
|
# ll alias breakdown
|
||||||
|
# -a includes hidden files
|
||||||
|
# -l displays the listing in long format, showing file attributes such as permissions
|
||||||
|
# -F appends a character to each entry in the listing to indicate the file type (e.g '/' for directories and '*' for executables)
|
||||||
|
alias ll="ls -alF"
|
||||||
|
|
||||||
|
# la alias breakdown
|
||||||
|
# -A list all entries without ./ and ../
|
||||||
|
alias la="ls -A"
|
||||||
|
|
||||||
|
# l alias breakdown
|
||||||
|
# -C list entries by columns
|
||||||
|
# -F appends a character to each entry in the listing to indicate the file type (e.g '/' for directories and '*' for executables)
|
||||||
|
alias l="ls -CF"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue