Skip to content

Instantly share code, notes, and snippets.

View dbswebsite's full-sized avatar

dbsinteractive dbswebsite

View GitHub Profile
@dbswebsite
dbswebsite / normalize.sh
Last active December 21, 2020 11:59
Normalize image filenames, recursively.
#!/bin/bash
#
# @file normalize.sh
#
# @requires the perl 'rename' utility
#
################################################################################
# force to lowercase
find . -iregex ".+\.\(jpe?g\|png\)" | rename 'y/A-Z/a-z/'