3 lines
69 B
Bash
Executable File
3 lines
69 B
Bash
Executable File
#!/bin/sh
|
|
find -type f -iname '*.jpg' -print0 | xargs -0 exiv2 mv -T
|