zsh-users
 help / color / mirror / code / Atom feed
From: "Bart Schaefer" <schaefer@brasslantern.com>
To: zsh-users@sunsite.dk
Subject: Re: Add contents in existing precmd
Date: Sun, 19 Jan 2003 18:58:57 +0000	[thread overview]
Message-ID: <1030119185858.ZM4745@candle.brasslantern.com> (raw)
In-Reply-To: <87wul1i6ii.fsf@laptop.debian-fr.org>

On Jan 19,  3:00pm, Bruno Bonfils wrote:
}
} how to prevent $HOST and $PWD will be replace with value ?

You can switch back and forth between double and single quotes:

        eval "function precmd () { 
                $functions[precmd]"'
                title $HOST $PWD
        }'

Or you can put backslashes before the individual dollar signs, but
if there are more than a few of them that might get tiresome:

        eval "function precmd () { 
                $functions[precmd]
                title \$HOST \$PWD
        }"

There are probably half a dozen other ways to do it as well.

This is all very basic shell syntax, with which you ought to become
familiar ...


      reply	other threads:[~2003-01-19 18:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-19 14:00 Bruno Bonfils
2003-01-19 18:58 ` Bart Schaefer [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=1030119185858.ZM4745@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).