Loading [MathJax]/jax/output/HTML-CSS/jax.js

Wednesday, June 17, 2020

Bash Script

1
for f in *\ *; do mv "$f" "${f// /_}"; done
This change all spaces in file name by a "_".

No comments:

Post a Comment