1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 08:12:48 +01:00
imapsync/W/learn/pipemess
Nick Bebout e2bfc931f4 1.637
2015-05-28 12:04:57 -05:00

18 lines
153 B
Perl
Executable File

#!/usr/bin/perl -w
# $Id: $
use strict ;
open( READCMD, "cat -n /etc/passwd |" ) ;
my @out = <READCMD> ;
close( READCMD ) ;
print @out ;
exit ;