8 lines
No EOL
164 B
Bash
8 lines
No EOL
164 B
Bash
# rename <OLD> <NEW>
|
|
# rename files with replace pattern
|
|
function rename() {
|
|
rnr -f --no-dump "$1" "$2" ./*
|
|
}
|
|
|
|
alias cat="bat -p"
|
|
alias gfold="gfold -d classic" |