Tech C**P
@technical_notes
14
subscribers
161
photos
9
videos
59
files
304
links
مدرس و برنامه نویس پایتون و لینوکس
@alirezastack
Download Telegram
Join
Tech C**P
14 subscribers
Tech C**P
How to recursively
rename
filenames?
find . -name '*txt' -exec bash -c ' mv $0 ${0/brand-/category-}' {} \;
The above command
renames
txt files starting with
brand-
to
category-
.
#linux
#bash
#find
#rename
#batch_rename