Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Stupid console tricks (or color highlighted tail)

by tstock (Curate)
on Dec 20, 2002 at 23:42 UTC ( [id://221538]=note: print w/replies, xml ) Need Help??


in reply to Stupid console tricks (or color highlighted tail)

asking for console tips on windows XP... that's funny :)

To cat a log file and see error lines in red over black, I would could use this on my machine (linux):
perl -ne 'print /ERROR/ ? "\033[1;31m\033[40m$_\033[0m" : $_ ' my.log
A cool trick I use to follow a log file is use 'less my.log', /searchstring, SHIFT+f

now not only can I jump between a less and a tail -f, but also the searchstring is highlighted everytime it shows up.

tstock

update:
silly rotating star:
perl -e 'print "\b" . substr("|/-\\", time % 4, 1 ) while 1'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-23 21:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found