Skip to main content
added 27 characters in body
Source Link

If you need to rename only files in one directory, by replacing all spaces. Then you can use this command with rename.ul:

for i in *' '*; do rename.ul "' "' "_"'_' **; done

If you need to rename only files in one directory, replacing all spaces. Then you can use this command with rename.ul:

rename.ul " " "_" *

If you need to rename only files in one directory by replacing all spaces. Then you can use this command with rename.ul:

for i in *' '*; do rename.ul ' ' '_' *; done

deleted 1 character in body
Source Link

If you need to rename only files in one directory, replacing all spaces. Then you can use this command with rename.ul:

rename.ul " " """_" ./*

If you need to rename only files in one directory, replacing all spaces. Then you can use this command with rename.ul:

rename.ul " " "" ./*

If you need to rename only files in one directory, replacing all spaces. Then you can use this command with rename.ul:

rename.ul " " "_" *

Source Link

If you need to rename only files in one directory, replacing all spaces. Then you can use this command with rename.ul:

rename.ul " " "" ./*