v1ral_ITS

whitespace

Jun 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.09 KB | None | 0 0
  1. #!/bin/bash
  2. shopt -s globstar
  3. for file in **/*\ *
  4. do
  5.     mv "$file" "${file// /_}"      
  6. done
Add Comment
Please, Sign In to add comment