zsh-users
 help / color / mirror / code / Atom feed
From: Paul Hoffman <nkuitse@nkuitse.com>
To: zsh-users@zsh.org
Subject: Re: truncating string in .zprofile
Date: Thu, 21 Mar 2013 08:34:09 -0400	[thread overview]
Message-ID: <20130321123409.GA19945@phisen.local> (raw)
In-Reply-To: <mailbox-25186-1363812608-77606@pepper.0.0.200>

On Wed, Mar 20, 2013 at 09:54:48PM +0100, Eric Smith wrote:
> I did this -
> preexec () { print -Pn
> "\033k\033\134\033k[${1[1,12]}..${1[-6,$]}]\033\134" }
> 
> How would I do arbitrary string searching and replacement in the `$1'?

Any way you want -- grep, sed, or plain zsh.

preexec() {
    print -Pn "\033k\033\134\033k[$(
        print -n 'uptime: '
        uptime | perl -pe ...
    )]\033\134"
}

Paul.

-- 
Paul Hoffman <nkuitse@nkuitse.com>


      reply	other threads:[~2013-03-21 13:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-20 18:28 Eric Smith
2013-03-20 19:41 ` Paul Hoffman
2013-03-20 20:17   ` Eric Smith
2013-03-20 20:45     ` Paul Hoffman
2013-03-20 20:54       ` Eric Smith
2013-03-21 12:34         ` Paul Hoffman [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=20130321123409.GA19945@phisen.local \
    --to=nkuitse@nkuitse.com \
    --cc=zsh-users@zsh.org \
    /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).