4 lines
61 B
Bash
4 lines
61 B
Bash
|
for file in *.md; do
|
||
|
mv -- "$file" "${file%.*}.gmi"
|
||
|
done
|