Encrypt files : Shell « System Functions « Perl
- Perl
- System Functions
- Shell
Encrypt files
$CryptFile = "crypt.out";
open(OUT,"| crypt > $CryptFile") || die "Can't run crypt\n";
while(<>) {
print OUT;
}
close(OUT);
Related examples in the same category