Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Jan 2003 09:35:23 -0700
From:      David Bear <David.Bear@asu.edu>
To:        mike <mike@labs.unixhideout.com>
Cc:        freebsd-questions@FreeBSD.ORG
Subject:   Re: Shell guru needed.
Message-ID:  <20030103093523.A15099@asu.edu>
In-Reply-To: <200301030103.h0313b67012698@labs.unixhideout.com>; from mike@labs.unixhideout.com on Thu, Jan 02, 2003 at 08:03:37PM -0500
References:  <200301030103.h0313b67012698@labs.unixhideout.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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. It will save me hours if not days so thanks in advance.

I'm no shell guru but how about something like

find ./yourdirectory -name "*pdf" -exec mv {} ./newdirectory \;

you may have to play with the syntax a little but wouldn't this do it?

> 

-- 
David Bear
College of Public Programs/ASU
Mail Code 0803

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030103093523.A15099>