Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jun 2008 11:38:34 +0200 (CEST)
From:      Wojciech Puchar <wojtek@wojtek.tensor.gdynia.pl>
To:        Zbigniew Szalbot <z.szalbot@lc-words.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: generating random passwords
Message-ID:  <20080611113814.K59279@wojtek.tensor.gdynia.pl>
In-Reply-To: <484F7CBE.5060401@lc-words.com>
References:  <484F7CBE.5060401@lc-words.com>

next in thread | previous in thread | raw e-mail | index | archive | help
>
> Excuse me my ignorance. Is there a utility in FreeBSD that would allow me to 
> generate random passwords without actually creating any accounts or modifying

example:

[wojtek@wojtek ~]$ cat bin/genpwd
#!/bin/sh
dd if=/dev/urandom bs=8 count=1 2>/dev/null |hexdump|cut -b 9-12,14-17,19-22,24-27



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080611113814.K59279>