Revision history of "Rename all the file extenstions in a directory"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 16:03, 24 May 2013Nighthawk (Talk | contribs). . (156 bytes) (+156). . (Created page with "Rename all the file extenstions in a directory(JPG to jpg in this example): for file in *.JPG ; do mv $file `echo $file | sed 's/\(.*\.\)JPG/\jpg/'` ; done")