Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: file names in arrays
- X-seq: zsh-users 9010
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: file names in arrays
- Date: Sat, 02 Jul 2005 20:51:37 +0000
- In-reply-to: <j158c1pcrjsq040ej4efsa1nt6cp96vlar@xxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <j158c1pcrjsq040ej4efsa1nt6cp96vlar@xxxxxxx>
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
Messages sorted by:
Reverse Date,
Date,
Thread,
Author