From 6792e7789bd85260956eb99155292d9745cc10bd Mon Sep 17 00:00:00 2001 From: jc <46619361+juancwu@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:37:31 -0400 Subject: [PATCH] delete bash aliases file moved everything into one file because is a pain to keep two files and source them lol --- .config/bash/.bash_aliases | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .config/bash/.bash_aliases diff --git a/.config/bash/.bash_aliases b/.config/bash/.bash_aliases deleted file mode 100644 index 8644dca..0000000 --- a/.config/bash/.bash_aliases +++ /dev/null @@ -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"