Thread
:
Renaming multiple files - shell script
View Single Post
11-04-2005, 04:48 PM
#
2
(
permalink
)
taylor
Junior Member
Join Date: Aug 2005
Posts: 28
Hi ~susanh - give this a try:
Code:
#!/bin/sh # usage: call ./rename.sh .*.mp3 for f in "$@" do echo $f mv "$f" "${f/\._/}" done
cheers
taylor
View Public Profile
Send a private message to taylor
Find More Posts by taylor
Sponsored Links