mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
18 lines
153 B
Perl
Executable File
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 ;
|
|
|