zsh-users
 help / color / mirror / code / Atom feed
From: Paul Lew <paullew@cisco.com>
To: Anssi Saari <as@sci.fi>
Cc: zsh-users@sunsite.dk
Subject: Re: Vanishing files ?
Date: Mon, 29 May 2006 10:51:25 -0700	[thread overview]
Message-ID: <17531.13469.318644.468190@cns-build4.cisco.com> (raw)
In-Reply-To: <20060529075722.GA28846@sci.fi>

>>>>> "Anssi" == Anssi Saari <as@sci.fi> writes:

    Anssi> That doesn't really work for escape sequences now does it?
    Anssi> For example, on this machine, my prompt under script is
    Anssi> shown in less like this:

    Anssi> ^MESC[m^OESC[mESC[mESC[Jkuori% ESC[Kls^M

    Anssi> That sed removes the ^M and escapes, but what it leaves
    Anssi> behind is [m[m[m[Jkuori% [K

I used the following scripts for years, can be translated to zsh:

while (<>) {
        s/\015$//;
        s/^\015//;
        s/[^\010]\010//g;
        s/\033\[(;?\d+)*[a-zA-Z]//g;
        s/^\017//;              # ^O inserted by screen
        print;
        }


  parent reply	other threads:[~2006-05-29 17:51 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-28 15:24 Meino Christian Cramer
2006-05-28 18:32 ` Bart Schaefer
2006-05-28 18:38   ` Meino Christian Cramer
2006-05-28 23:24     ` Bart Schaefer
2006-05-29  2:38       ` Meino Christian Cramer
2006-05-29  7:57   ` Anssi Saari
2006-05-29 15:32     ` Peter Stephenson
2006-05-29 17:51     ` Paul Lew [this message]
2006-05-29 18:16     ` De-script (Re: Vanishing files ?) Bart Schaefer
2006-05-28 18:37 ` Vanishing files ? DervishD
2006-05-28 18:44   ` Meino Christian Cramer
2006-05-29  6:11     ` DervishD
2006-05-29  8:56       ` Meino Christian Cramer
2006-05-29  8:58         ` DervishD
2006-05-30 21:59         ` Tobias Gruetzmacher

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=17531.13469.318644.468190@cns-build4.cisco.com \
    --to=paullew@cisco.com \
    --cc=as@sci.fi \
    --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).