User Tools

Site Tools


bash:files:rename_spaces_in_a_filename_with_hyphens

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

bash:files:rename_spaces_in_a_filename_with_hyphens [2022/06/13 11:46] – created peterbash:files:rename_spaces_in_a_filename_with_hyphens [2022/06/13 11:47] (current) peter
Line 1: Line 1:
 ====== BASH - Files - Rename spaces in a filename with hyphens ====== ====== BASH - Files - Rename spaces in a filename with hyphens ======
 +
 +Replace spaces in a filename with hyphens.
 +
 +<code bash>
 +for f in * ; do mv "$f" $( echo $f | tr ' ' '-' ) ; done
 +</code>
 +
 +----
  
bash/files/rename_spaces_in_a_filename_with_hyphens.1655120795.txt.gz · Last modified: 2022/06/13 11:46 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki