Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Cleaning the Log

by Arien (Pilgrim)
on Sep 02, 2002 at 21:53 UTC ( [id://194641]=note: print w/replies, xml ) Need Help??


in reply to Cleaning the Log

Here's to Golf!

perl -pe's/\{BS\}/\b/g;1while s/.?\010//' file

— Arien

Edit: Good catch, BrowserUk++. I forgot about that one, but I now remember I don't need the first zero. To tie: ;-)

perl -pe's/\{BS\}/\b/g;1while s/.?\10//' file

Replies are listed 'Best First'.
Re: Re: Cleaning the Log
by BrowserUk (Patriarch) on Sep 02, 2002 at 22:31 UTC

    Revenge! -1 :8D

    perl -pe's/\{BS\}/\b/g;1while s/.?\cH//' file

    Update:In that case, we might as well do away with that redundant '?'. If there isn't a char before it, then there is nothing to backspace over!

    Revenge again! :) -1 more.

    In private discussion, Arien pointed out that whilst the cusor may not move back past the left hand edge of the screen if you keep pounding the backspace key, it is unlikely that the keystroke logger would have the smarts to realise that, and so would likely keep recording the useless keystrokes.

    I therefore willingly accept his offer of a draw. (Drat! and double-drat! Thought I had'im that time!)

    perl -pe's/\{BS\}/\b/g;1while s/.\cH//' file


    Well It's better than the Abottoire, but Yorkshire!

      I messed up pretty bad before, but nobody took advantage... -11!

      perl -pe'1while s/.?\{BS\}//' file

      — Arien

        You can get rid of one more. perl -pe's/.?\{BS\}//&&redo' file Update: actually, you one needn't escape the curlies. Another two more. perl -pe's/.?{BS}//&&redo' file

        Makeshifts last the longest.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://194641]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (1)
As of 2025-01-13 09:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which URL do you most often use to access this site?












    Results (28 votes). Check out past polls.