Re: Shell guru needed.(xargs question)

2003-01-03 Thread David S. Jackson
On Fri, Jan 03, 2003 at 10:55:09AM -0500 Danny <[EMAIL PROTECTED]> wrote: > Could you please give another realworld example of using xargs and > your definition of it. I had a glance through man xargs, but I enjoy input > from humans that use it as well. :) Xargs is pretty neat. You have to remem

Re: Shell guru needed.

2003-01-03 Thread David Bear
On Thu, Jan 02, 2003 at 08:03:37PM -0500, mike wrote: > Hey guys. heres the skinny. I have a huge library and i want to organize it. I want >find to go through recursively, and move any "pdf" files it finds to a certain >directory. I need an example piece of script on how i would confront this. I

Re: Shell guru needed.(xargs question)

2003-01-03 Thread Danny
ot; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, January 03, 2003 10:25 AM Subject: Re: Shell guru needed. > On Thu, Jan 02, 2003 at 08:03:37PM -0500 mike <[EMAIL PROTECTED]> wrote: > > Hey guys. heres the skinny. I have a huge library and i want to > &

Re: Shell guru needed.

2003-01-03 Thread David S. Jackson
On Thu, Jan 02, 2003 at 08:03:37PM -0500 mike <[EMAIL PROTECTED]> wrote: > Hey guys. heres the skinny. I have a huge library and i want to > organize it. I want find to go through recursively, and move any "pdf" > files it finds to a certain directory. I need an example piece of > script on how i w

Re: Shell guru needed.

2003-01-03 Thread Dirk-Willem van Gulik
Try any unix primer or man find or find /my/unorganized/dir -name '*.pdf' -type f -exec echo mv {} /my/pdfs \; and pray that you do not have files with identical names. On Thu, 2 Jan 2003, mike wrote: > Hey guys. heres the skinny. I have a huge library and i want to organize it

Re: Shell guru needed. [Ahhhh! Sorry, but one more...]

2003-01-02 Thread Nathan Kinkade
On Thu, Jan 02, 2003 at 05:58:11PM -0800, Nathan Kinkade wrote: > On Thu, Jan 02, 2003 at 05:52:55PM -0800, Nathan Kinkade wrote: > > On Thu, Jan 02, 2003 at 08:03:37PM -0500, mike wrote: > > > Hey guys. heres the skinny. I have a huge library and i want to organize it. I >want find to go through

Re: Shell guru needed.

2003-01-02 Thread Nathan Kinkade
On Thu, Jan 02, 2003 at 05:52:55PM -0800, Nathan Kinkade wrote: > On Thu, Jan 02, 2003 at 08:03:37PM -0500, mike wrote: > > Hey guys. heres the skinny. I have a huge library and i want to organize it. I >want find to go through recursively, and move any "pdf" files it finds to a certain >director

Re: Shell guru needed.

2003-01-02 Thread Mike Jeays
mike wrote: Hey guys. heres the skinny. I have a huge library and i want to organize it. I want find to go through recursively, and move any "pdf" files it finds to a certain directory. I need an example piece of script on how i would confront this. It will save me hours if not days so thanks in

Re: Shell guru needed.

2003-01-02 Thread paul
mike wrote: > Hey guys. heres the skinny. I have a huge library and i want to > organize it. I want find to go through recursively, and move > any "pdf" files it finds to a certain directory. I need an > example piece of script on how i would confront this. It will > save me hours if not days so th

Re: Shell guru needed.

2003-01-02 Thread Nathan Kinkade
On Thu, Jan 02, 2003 at 08:03:37PM -0500, mike wrote: > Hey guys. heres the skinny. I have a huge library and i want to organize it. I want >find to go through recursively, and move any "pdf" files it finds to a certain >directory. I need an example piece of script on how i would confront this. I

RE: Shell guru needed.

2003-01-02 Thread Derrick Ryalls
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of mike > Sent: Thursday, January 02, 2003 5:04 PM > To: [EMAIL PROTECTED] > Subject: Shell guru needed. > > > Hey guys. heres the skinny. I have a huge library and i want > to organize it. I want fi