zsh-users
 help / color / mirror / code / Atom feed
From: sand <sandman@freaknet.org>
To: zsh-users@sunsite.dk
Subject: Re: replace all versions of a file in hierachy with a more recent version
Date: Fri, 16 Jun 2006 18:24:19 +0200	[thread overview]
Message-ID: <4492DB33.9030901@freaknet.org> (raw)
In-Reply-To: <Xns97E4AC9347343zzappergmailcom@80.91.229.5>

zzapper wrote:
> find . -name SQLyogTunnel.php  -exec \cp c:/aaa/replace/SQLyogTunnel.php {} 
> \;

You can still do it without find:

for f in **/SQLyogTunnel.php; do
	cp c:/aaa/replace/SQLyogTunnel.php $f
done

(I don't know how paths are handled under windows...)

sand
-- 
Hi, I'm a .signature virus! Copy me to your .signature file and
help me propagate, thanks!


  reply	other threads:[~2006-06-16 16:25 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-16 12:41 zzapper
2006-06-16 12:49 ` Peter Stephenson
2006-06-16 13:21   ` zzapper
2006-06-16 15:57     ` zzapper
2006-06-16 16:24       ` sand [this message]
2006-06-16 18:29         ` zzapper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4492DB33.9030901@freaknet.org \
    --to=sandman@freaknet.org \
    --cc=zsh-users@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).