File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 2
2
about-alias ' general aliases'
3
3
4
4
if command ls --color -d . & > /dev/null; then
5
- alias ls=" ls --color=auto"
5
+ alias ls=' ls --color=auto'
6
6
# BSD `ls` doesn't need an argument (`-G`) when `$CLICOLOR` is set.
7
7
fi
8
8
@@ -14,11 +14,11 @@ alias l='ls -a'
14
14
alias l1=' ls -1'
15
15
alias lf=' ls -F'
16
16
17
- alias _=" sudo"
17
+ alias _=' sudo'
18
18
19
19
# Shortcuts to edit startup files
20
- alias vbrc=" ${VISUAL:- vim} ~/.bashrc"
21
- alias vbpf=" ${VISUAL:- vim} ~/.bash_profile"
20
+ alias vbrc=' ${VISUAL:-vim} ~/.bashrc'
21
+ alias vbpf=' ${VISUAL:-vim} ~/.bash_profile'
22
22
23
23
# colored grep
24
24
# Need to check an existing file for a pattern that will be found to ensure
@@ -70,11 +70,11 @@ alias md='mkdir -p'
70
70
alias rd=' rmdir'
71
71
72
72
# Shorten extract
73
- alias xt=" extract"
73
+ alias xt=' extract'
74
74
75
75
# sudo editors
76
- alias svim=" sudo ${VISUAL:- vim} "
77
- alias snano=" sudo nano"
76
+ alias svim=' sudo ${VISUAL:-vim}'
77
+ alias snano=' sudo nano'
78
78
79
79
# Display whatever file is regular file or folder
80
80
function catt() {
You can’t perform that action at this time.
0 commit comments