Skip to content

Instantly share code, notes, and snippets.

@bojoer
Forked from Fleshgrinder/crypt.pl
Created June 1, 2014 21:01
Show Gist options
  • Save bojoer/15bd7c145afd00df983f to your computer and use it in GitHub Desktop.
Save bojoer/15bd7c145afd00df983f to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
chomp(my $filename=$ARGV[0]);
chomp(my $username=$ARGV[1]);
chomp(my $password=$ARGV[2]);
if (!$filename || !$username || !$password) {
print "USAGE: ./crypt.pl filename username password\n\n";
} else {
open FILE, ">>", $filename or die $!;
print FILE $username . ":" . crypt($password, $username) . "\n";
close FILE or die $!;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment