Skip to content

Instantly share code, notes, and snippets.

@mike623
Created March 24, 2020 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mike623/98590a980a48b4f6db5ab81e296a2a54 to your computer and use it in GitHub Desktop.
Save mike623/98590a980a48b4f6db5ab81e296a2a54 to your computer and use it in GitHub Desktop.
#!/bin/bash
(
IFS=$'\n'
for y in $(ls $1)
do
mv $1/`echo $y | sed 's/ /\\ /g'` $1/`echo "$y" | sed 's/ /_/g'`
done
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment