Date: Wed, 01 Oct 2003 16:33:30 -0400 (EDT) From: Andy Harrison <ah46@mlz.us> To: Martin Vana <martin.vana@vslib.cz> Cc: freebsd-questions@freebsd.org Subject: Re: newbie question - how to pass textfile as an argument Message-ID: <XFMail.20031001163330.ah46@mlz.us> In-Reply-To: <20031001232109.0ae5bfd4.martin.vana@vslib.cz>
next in thread | previous in thread | raw e-mail | index | archive | help
-----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 01-Oct-2003, Martin Vana wrote message "newbie question - how to pass textfile as an argument" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > I was just wondering if there is a way how to pass a text file with list of > path/files to > programs like cp/mv. AFAIK, you can't. You can, however, use something like the find command. find /somedir -type f -name '*pattern*' -maxdepth 1 -exec mv {} newdir \; (maxdepth 1 limits it to the current directory, otherwise it is recursive.) ~~ Andy Harrison (full headers for details) -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBP3s6GVPEkLgodAWVAQHWhAQAij/sg4mNSJzdHn0ISnHF3tgdd7FVgbe0 lIHbNBZn6jFrhrd8QXSv22cHKftN/1kDsoAywB7bLVeXHgzKKek/NuWt98qE3/Rp osVwgGOj8S2c/sBm8tPjHlkcxAdQxM7MlNcMc29sDlQ+smdKYCIjKn0Nv1jPqzeP W3PmyqXefOE= =wuMG -----END PGP SIGNATURE-----
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?XFMail.20031001163330.ah46>