mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
# Change file extensions recursively in current directory
|
|
#
|
|
# change-extension erb haml
|
|
|
|
function change-extension() {
|
|
foreach f (**/*.$1)
|
|
mv $f $f:r.$2
|
|
end
|
|
}
|