Browse Source

JPG to jpg

Francesco 1 year ago
parent
commit
834bc3992f
1 changed files with 7 additions and 0 deletions
  1. 7 0
      img/Contrassegni/jpg.bash

+ 7 - 0
img/Contrassegni/jpg.bash

@@ -0,0 +1,7 @@
+#!/bin/bash
+
+for img in *.JPG; do
+  mv -- "$img" "${img%.JPG}.jpg"
+done
+
+exit