Created
April 28, 2013 22:07
-
-
Save briandfoy/5478599 to your computer and use it in GitHub Desktop.
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 | |
my $start = time; | |
system { $ARGV[0] } @ARGV; # See the Security chapter! | |
my $end = time; | |
printf "The whole time was %d seconds\n", $end - $start; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment