DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Rename All *.gif Files In A Directory (prefix)
// My mind always seems to draw a blank when I want to do this sort of thing, so here's a concise little self-reminder
for file in $(echo *.gif); do mv ${file} prefix.${file}; done






Comments
Snippets Manager replied on Fri, 2011/09/09 - 6:10am
Snippets Manager replied on Tue, 2007/08/28 - 7:43pm