Skip to content

Instantly share code, notes, and snippets.

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 nguyentienlong/0ace5846f38e36408995eecf13ffcda4 to your computer and use it in GitHub Desktop.
Save nguyentienlong/0ace5846f38e36408995eecf13ffcda4 to your computer and use it in GitHub Desktop.
remove special char in filename
for file in *; do mv "$file" $(echo "$file" | sed -e 's/[^A-Za-z0-9._-]/_/g'); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment