Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'ksh and it's friends' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
ksh and it's friends
Authored by: osxpez on Aug 14, '02 10:10:03AM
There's a thread in the forums right now about renaming. I've been advertising using the shell for some cases of renaming. This one could be written:
for file in *__*; do mv "$file" "${file//__/}"; done


[ Reply to This | # ]