Skip to content

Instantly share code, notes, and snippets.

@shaoyanji
shaoyanji / removespaces.sh
Created November 11, 2024 17:12
removes spaces in filenames when run in a folder for pandoc parsing and other automated tasks
#!/usr/bin/env bash
find . -depth -name '* *' | while read fname; do
new_fname=$(echo $fname | tr " " "_")
if [ -e $new_fname ]; then
echo "File $new_fname already exists. Not replacing $fname"
else
echo "Creating new file $new_fname to replace $fname"
mv "$fname" $new_fname
fi