Skip to content

Instantly share code, notes, and snippets.

@Kr0n0
Created May 16, 2020 10:40
Show Gist options
  • Save Kr0n0/d47cf142aac7e8cb40243c2ed1168ca0 to your computer and use it in GitHub Desktop.
Save Kr0n0/d47cf142aac7e8cb40243c2ed1168ca0 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Rename files with spaces on it's filename with underscores
for f in *\ *
do
mv "$f" "${f// /_}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment