Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: Favourite One-liners?

by sfink (Deacon)
on Jun 28, 2005 at 19:18 UTC ( [id://470772]=note: print w/replies, xml ) Need Help??


in reply to Re: Favourite One-liners?
in thread Favourite One-liners?

Why not justsleep 3600; something.exe? Does that not work in Windows?

On Unix, I generally use ( sleep 60m; xterm -bg red ) & to set a timer to pop up a big red window after an hour, without tying up the shell.

Some of my favorites:

Scan a log file generated by strace -tt, looking for each second turnover: (should statistically find the operations requiring the most time)

perl -lane 'print $last if ($F[0] ne $lastt); $last = $_; $lastt = $F[ +0];'
Print out a running sum of the 3rd column of a file:
perl -lane 'print $s += $F[2]'
Rewrite all of the CVS/Root files in a tree (yes, this is a weird way to do it):
find . -name 'Root' -print0 | xargs -0 perl -i -pe '$_=q(:pserver:sfin +k@cvs/usr/local/cvs)'
Print out all the double-quoted strings in a file:
perl -lne 'print $1 while (/\"(.*?)\"/g)' filename
Somewhat more robust version (handles backslashes):
perl -lne 'print $1 while (/\"((\\.|[^\"])*)\"/g)' filename
Print out all of the C++ constructors in a set of files:
perl -lne 'print if /(\w+)::\1/ .. /^\}/' *.cpp
I don't know if those are really representative of my favorites. I normally just spew them out on demand, so it's difficult to think of them when I don't actually need them. The above are just the ones I've used recently enough to remember.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-03-29 00:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found