mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-11 23:24:30 +02:00
17 lines
153 B
Perl
Executable file
17 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 ;
|
|
|