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

2001-08-28 Thread Isaac Curtis
Adams, Jamie wrote: That was great, much clearer now, thanks! I would very much like to learn bash programming, any suggestions on good resources? Thanks again. Jamie Adams Housing Assistant - Tel: (01723) 507543 Fax: (01723) 355862

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

2001-08-28 Thread Adams, Jamie
:[EMAIL PROTECTED]] Reply To: [EMAIL PROTECTED] Sent: 25 August 2001 04:56 To:[EMAIL PROTECTED] Subject: Re: [newbie] File Renaming Perks: Did someone say 'bash File: message.txt This is a newbie list right? [okay, good] I don't want to be too embarassed to ask a stuped question

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

2001-08-24 Thread David E. Fox
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

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

2001-08-24 Thread d
At 10:56 PM 8/24/01, you wrote: This is a newbie list right? [okay, good] I don't want to be too embarassed to ask a stuped question. There are NO stupid questions asked, nor are those that are NOT asked stupid, just those that do NOT ask their question are. Do NOT be embarassed we all

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

2001-08-23 Thread FLYNN, Steve
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 someone be willing to explain what

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

2001-08-23 Thread Carroll Grigsby
step by step? -- Jamie -- From: 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'? File: message.txt

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

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

2001-08-23 Thread Adams, Jamie
] Subject: Re: [newbie] File Renaming Perks: Did someone say 'bash script'? File: message.txt 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

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 the

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

2001-08-23 Thread civileme
Renaming Perks: Did someone say 'bash script'? File: message.txt 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

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