LINKDING

Shared bookmarks

bash - How to rename file names - replacing underscores with spaces - in a shell command line script - Ask Ubuntu

Date added
Oct. 6, 2021, 12:46 p.m.
Description
for f in * ; do mv "$f" "${f//_/ }" ; done