Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-23 Thread civileme
m: Dean Morrell[SMTP:[EMAIL PROTECTED]] > > >Reply To: [EMAIL PROTECTED] > > >Sent: 23 August 2001 14:22 > > >To:[EMAIL PROTECTED] > > >Subject: Re: [newbie] File Renaming "Perks: Did someone say 'bash > > > script'?" >

Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-23 Thread Kirby Urner
At 08:22 AM 8/23/2001 -0500, Dean Morrell wrote: >This is a newbie list right? [okay, good] I don't want to be too >embarassed to ask a stuped question. Would someone be willing to explain >what this does? I mean each character has significance, right? So what >is it? This reminds me of th

Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-23 Thread Carroll Grigsby
' 's and $;s mean, can anyone explain this > script step by step? >-- Jamie > > >-- > >From: Dean Morrell[SMTP:[EMAIL PROTECTED]] > >Reply To: [EMAIL PROTECTED] > >Sent: 23 August 2001 14:22 > >To: [EMAIL PR

RE: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-23 Thread Adams, Jamie
t;To:[EMAIL PROTECTED] >Subject: Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?" > ><> >This is a newbie list right? [okay, good] I don't want to be too embarassed >to ask a stuped question. Would someone be willing to ex

RE: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-23 Thread FLYNN, Steve
hursday, August 23, 2001 1:23 PM To: [EMAIL PROTECTED] Subject: Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?" This is a newbie list right? [okay, good] I don't want to be too embarassed to ask a stuped question. Would

Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-23 Thread Dean Morrell
This is a newbie list right? [okay, good] I don't want to be too embarassed to ask a stuped question. Would someone be willing to explain what this does? I mean each character has significance, right? So what is it? This reminds me of the random characters thrown up on my screen after disc

Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-22 Thread David E. Fox
> for i in `ls /dirname | grep -e".+ .+"`; do mv $i `echo $i | gawk '{ gsub(_, ,$0) }'` ; done ? :) what's wrong with 'tr'? David E. Fox Thanks for letting me [EMAIL PROTECTED]

Re: [newbie] File Renaming "Perks: Did someone say 'bash script'?"

2001-08-22 Thread civileme
On Wednesday 22 August 2001 17:20, Kirby Urner wrote: > There's gotta be a simple bash script based on > grep or find or something that'll get only the files > that need renaming, and substitute underline for > space. I'm sure that's the kinda thing he wants > -- some regular expression gizmo. I