gitbutler/scripts/normalize-spaces.sh

20 lines
412 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# Finds all files in a directory and renames all spaces to '_'.
set -euo pipefail
ROOT_DIR="${1:-}"
if [ -z "$ROOT_DIR" ]; then
2024-04-16 18:24:58 +03:00
echo "Usage: $0 <directory>"
exit 1
fi
find "$ROOT_DIR" -type f -name '*' -print0 | while IFS= read -r -d '' file; do
new_file="$(echo "$file" | tr ' ' '_')"
2024-04-16 18:24:58 +03:00
if [[ "$file" != "$new_file" ]]; then
mv -v "$file" "$new_file"
fi
done