This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/perl | |
use strict; | |
use warnings; | |
use 5.010; | |
use Time::HiRes qw/time gettimeofday/; | |
use POSIX 'strftime'; | |
use FileHandle ('autoflush'); | |
use Getopt::Std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/perl | |
# a Perl script with a "now" method to return a (yyyy_mm_dd_HH_mm_ss.ffffff) timestamp - Linux & Windows filename valid | |
use strict; | |
use warnings; | |
use POSIX; # for "strftime" | |
use Time::HiRes; # for "Time::HiRes::gettimeofday" | |
use 5.010; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
""" | |
Usage: | |
grep58.py <pattern> <file>... | |
grep58.py <pattern> | |
Examples: | |
# from file(s) |
NewerOlder