zsh-users
 help / color / mirror / code / Atom feed
From: gj@freeshell.org
To: zsh-users@sunsite.dk
Subject: why won't this function work?
Date: Thu, 8 Jul 2004 02:37:41 +0000 (UTC)	[thread overview]
Message-ID: <Pine.NEB.4.60.0407080235030.11144@zk.serrfuryy.bet> (raw)

Hi all.

I'm trying to convert a function I wrote in bash to zsh.  How can I get this to work?

selhist () 
{
     TAB='       ';
     (( " $# < 1 " )) && {
         echo "Usage: selhist [command]";
         return 1
     };
     oldIFS=$IFS;
     IFS='
';
     cmd=("" `grep -w $1 $HISTFILE | sort | uniq | pr -tn` "");
     IFS=$oldIFS;
     printf "%s\n" "${cmd[@]}" | less -F;
     echo -n "enter number of desired command [1 - $(( ${#cmd[@]} - 2 ))]: ";
     read answer;
     eval "${cmd[$answer]#*$TAB}"
}

Thanks,
GJ


             reply	other threads:[~2004-07-08  2:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-07-08  2:37 gj [this message]
2004-07-08  6:49 ` Bart Schaefer
2004-07-08  9:48 ` Peter Stephenson
2004-07-12 21:55   ` gj

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=Pine.NEB.4.60.0407080235030.11144@zk.serrfuryy.bet \
    --to=gj@freeshell.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).