Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: John Prevost <visigoth@cs.cmu.edu>
To: "Jens Olsson" <jenso@operamail.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Wildcard expansion/command line Q#2
Date: 14 May 2002 12:19:50 -0400	[thread overview]
Message-ID: <864rhad7mh.fsf@laurelin.dementia.org> (raw)
In-Reply-To: <20020514143955.29190.qmail@operamail.com>

>>>>> "jo" == Jens Olsson <jenso@operamail.com> writes:

    jo> Hi again, as I dig more into the code of my program I realize
    jo> that I have some more questions. I just hope these hasn't as
    jo> obvious answers than my previous ones... :)

{...}

    jo> But what happens if I want to go recursive? As I understand
    jo> it, the expansion made by the shell is *not* recursive
    jo> itself. If my wildcard is *.txt I will only get expanded names
    jo> for the current directory but not for any txt files in the
    jo> subdirectories. Is this a desired behaviour?

This is another reason that this is external to programs.  The typical
solution is either to use a shell with a more extended syntax (zsh,
for example) which lets you write "**/foo" to mean "foo in all
subdirectories", or to use the program find possibly with the support
of xargs.  A typical example is:

find . -type f -name \*.deleteme -print0 | xargs -0 rm

If your program needs to do this work itself, it should implement its
own system of globbing, much like find does.

John.
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


      parent reply	other threads:[~2002-05-14 17:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-05-14 14:39 Jens Olsson
2002-05-14 16:01 ` Alain Frisch
2002-05-14 16:19 ` John Prevost [this message]

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=864rhad7mh.fsf@laurelin.dementia.org \
    --to=visigoth@cs.cmu.edu \
    --cc=caml-list@inria.fr \
    --cc=jenso@operamail.com \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox