File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ alias _='sudo'
20
20
alias vbrc=' ${VISUAL:-vim} ~/.bashrc'
21
21
alias vbpf=' ${VISUAL:-vim} ~/.bash_profile'
22
22
23
+
23
24
# colored grep
24
25
# Need to check an existing file for a pattern that will be found to ensure
25
26
# that the check works when on an OS that supports the color option
@@ -55,6 +56,7 @@ alias cd..='cd ..' # Common misspelling for going up one directory
55
56
alias ...=' cd ../..' # Go up two directories
56
57
alias ....=' cd ../../..' # Go up three directories
57
58
alias -- -=' cd -' # Go back
59
+ alias dow=' cd /home/$USER/Downloads' # Go to the Downloads directory
58
60
59
61
# Shell History
60
62
alias h=' history'
68
70
alias md=' mkdir -p'
69
71
alias rd=' rmdir'
70
72
73
+ # Remove
74
+ alias rmrf=' rm -rf'
75
+
71
76
# Shorten extract
72
77
alias xt=' extract'
73
78
Original file line number Diff line number Diff line change @@ -183,3 +183,19 @@ if ! _command_exists del; then
183
183
mkdir -p /tmp/.trash && mv " $@ " /tmp/.trash
184
184
}
185
185
fi
186
+
187
+ # replace multiple file extensions at once
188
+ function renex() {
189
+ about ' mass replace of the extension of multiple files'
190
+ param ' 1: extension to replace'
191
+ param ' 2: new extenstion'
192
+ example ' rex txt md'
193
+ group ' base'
194
+ local ext2replace=" ${1:- } "
195
+ local newext=" ${2:- } "
196
+ local files=(* ." $ext2replace " )
197
+ for file in " ${files[@]} " ; do
198
+ local dst=${file/% ." $ext2replace " / ." $newext " }
199
+ mv " $file " " $dst "
200
+ done
201
+ }
You can’t perform that action at this time.
0 commit comments