Skip to content

Instantly share code, notes, and snippets.

@briandfoy
Created April 28, 2013 22:07
Show Gist options
  • Save briandfoy/5478599 to your computer and use it in GitHub Desktop.
Save briandfoy/5478599 to your computer and use it in GitHub Desktop.
#!/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