Skip to content

Instantly share code, notes, and snippets.

@jcreasey
jcreasey / gist:7935778dffc18ee8d523
Created June 26, 2014 06:37
Script to copy a file showing progress.
#!/usr/bin/perl
use strict;
use warnings;
use POSIX ":sys_wait_h";
my $from = $ARGV[0];
my $to = $ARGV[1];
print "Copying $from to $to\n";