find /path -type f -not -name “*.*” -exec mv “{}” “{}”.jpg \;
where “/path” is the path of the directory of images that needs jpg appended
find /path -type f -not -name “*.*” -exec mv “{}” “{}”.jpg \;
where “/path” is the path of the directory of images that needs jpg appended