zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@sunsite.dk
Subject: Re: file names in arrays
Date: Sat, 02 Jul 2005 20:51:37 +0000	[thread overview]
Message-ID: <1050702205137.ZM4701@candle.brasslantern.com> (raw)
In-Reply-To: <j158c1pcrjsq040ej4efsa1nt6cp96vlar@4ax.com>

On Jun 30,  4:51pm, zzapper wrote:
}
} At the risk of being abused, RTFM etc etc
} 
} Has anyone got a script where a number of file names resulting from
} say a find/grep are loaded into an array.

Go to http://www.zsh.org/cgi-bin/mla/wilma/users and search for "keeper".

} And then this array is looped thru with a promt deciding what might
} happen to these files, mv,rm,cp edit etc

Isn't the answer to this the same as -- or awfully similar to, at any
rate -- the answer to your "Creating a Case statement dynamically" 
thread from a couple of days earlier?


    local file command target
    find "$@" | keep
    for file in $kept
    do
	PS3="Action on $file: "
	target=''
	select command in mv cp rm gvim
	do
	    case $REPLY in
	    ((Q|q)*) break 2;;
	    (<1->) 
		case $command in
		(cp|mv) vared -e -p "$command $file " target &&
			[[ -n $target ]] && $command $file $target
		(?*) $command $file;;
		(*) break;;
		esac;;
	    (*) break;;
	    esac
	done
    done


  parent reply	other threads:[~2005-07-02 20:52 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-06-30 15:51 zzapper
2005-06-30 17:12 ` Philippe Troin
2005-07-02 20:51 ` Bart Schaefer [this message]
2005-07-04 12:06   ` zzapper
2005-07-04 14:09     ` Bart Schaefer
2005-07-04 15:31       ` zzapper
2005-07-04 17:33         ` 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=1050702205137.ZM4701@candle.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --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).