Skip to content

Instantly share code, notes, and snippets.

@cowens
Created August 26, 2014 19:50
Show Gist options
  • Save cowens/d0682357d74f2353038c to your computer and use it in GitHub Desktop.
Save cowens/d0682357d74f2353038c to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
@ARGV = map {
/((?:[^@]+@)?[^:]+):(.*)/ ? "ssh $1 cat $2 |" : $_
} @ARGV;
while (<>) {
print;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment