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 advance.
>
you don't say if you need to preserve any of the path information
when you move the file. The other poster's suggestion might work:
my take on it would be to use a for loop:
for i in `find /some/dir -name "*.pdf"`;
do mv $i /some/other/dir;
done
--
Paul Beard: seeking UNIX/internet engineering work
<http://paulbeard.no-ip.org/paulbeard.html>
8040 27th Ave NE Seattle WA 98115 / 206 529 8400
There's no real need to do housework -- after four years it
doesn't get
any worse.
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message
- Shell guru needed. mike
- RE: Shell guru needed. Derrick Ryalls
- Re: Shell guru needed. Nathan Kinkade
- Re: Shell guru needed. Nathan Kinkade
- Re: Shell guru needed. [Ahhhh! Sorry, b... Nathan Kinkade
- Re: Shell guru needed. paul
- Re: Shell guru needed. Mike Jeays
- Re: Shell guru needed. Dirk-Willem van Gulik
- Re: Shell guru needed. David S. Jackson
- Re: Shell guru needed.(xargs question) Danny
- Re: Shell guru needed.(xargs question) David S. Jackson
- Re: Shell guru needed. David Bear