MV Batch Ganti nama ekstensi
for f in *.oldext; do
mv -- "$f" "${f%.oldext}.newext"
done
Fine Falcon
for f in *.oldext; do
mv -- "$f" "${f%.oldext}.newext"
done