1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/pipemess

18 lines
153 B
Plaintext
Raw Normal View History

2015-05-28 19:04:57 +02:00
#!/usr/bin/perl -w
# $Id: $
use strict ;
open( READCMD, "cat -n /etc/passwd |" ) ;
my @out = <READCMD> ;
close( READCMD ) ;
print @out ;
exit ;