Plan 9 from Bell Labs’s /usr/web/sources/contrib/pac/rc/bin/ren

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/rc
# rename files
#  Fri Nov 19 07:40:26 EST 2004 Peter A. Cejchan <cej@gli.cas.cz | pac7@post.cz | pac@plan9.cz>
# usage: ren filepattern 's/old/new'
rfork e
for(i in $1)
{
	newname = `{echo $1 |  sed $2}
	mv $i $newname
}
#-eof-

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.