delete bash aliases file

moved everything into one file because is a pain to keep two files and source them lol
This commit is contained in:
jc 2023-10-01 16:37:31 -04:00
commit 6792e7789b
No known key found for this signature in database

View file

@ -1,16 +0,0 @@
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"