<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Quickzi: Generate Random Passwords on the Linux Command Line</title>
	<atom:link href="http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/</link>
	<description>Linux Tips, Tricks, and Opinions</description>
	<lastBuildDate>Sat, 10 Sep 2011 09:00:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: André Carvalho</title>
		<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/comment-page-1/#comment-122256</link>
		<dc:creator>André Carvalho</dc:creator>
		<pubDate>Sat, 04 Jun 2011 02:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/?p=203#comment-122256</guid>
		<description>Try;date &#124; md5sum</description>
		<content:encoded><![CDATA[<p>Try;date | md5sum</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cj_MaN</title>
		<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/comment-page-1/#comment-74612</link>
		<dc:creator>Cj_MaN</dc:creator>
		<pubDate>Tue, 23 Nov 2010 22:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/?p=203#comment-74612</guid>
		<description>no_of_passwords=10
password_lenght=16

i=0
while [[ $i -le $no_of_passwords ]]; do
    new_pass=$(&lt; /dev/urandom tr -dc _A-Z-a-z-0-9 &#124; head -c$password_lenght)
    [[ -n &quot;$new_pass&quot; ]] &amp;done</description>
		<content:encoded><![CDATA[<p>no_of_passwords=10<br />
password_lenght=16</p>
<p>i=0<br />
while [[ $i -le $no_of_passwords ]]; do<br />
    new_pass=$(&lt; /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c$password_lenght)<br />
    [[ -n &quot;$new_pass&quot; ]] &amp;done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anson</title>
		<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/comment-page-1/#comment-59772</link>
		<dc:creator>Anson</dc:creator>
		<pubDate>Wed, 18 Aug 2010 04:08:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/?p=203#comment-59772</guid>
		<description>you can get password generator in Debian: 
#pwgen</description>
		<content:encoded><![CDATA[<p>you can get password generator in Debian:<br />
#pwgen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deviji</title>
		<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/comment-page-1/#comment-33154</link>
		<dc:creator>Deviji</dc:creator>
		<pubDate>Fri, 06 Feb 2009 12:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/?p=203#comment-33154</guid>
		<description>Hi,

I need to generate 10 random numbers using /dev/random.
Is this possible ?
Can you give me syntax for same.
Also how can i execute this in PHP.

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I need to generate 10 random numbers using /dev/random.<br />
Is this possible ?<br />
Can you give me syntax for same.<br />
Also how can i execute this in PHP.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikron</title>
		<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/comment-page-1/#comment-27144</link>
		<dc:creator>mikron</dc:creator>
		<pubDate>Sun, 02 Nov 2008 12:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/?p=203#comment-27144</guid>
		<description>Newline at the end:

$ echo `&lt; /dev/urandom tr -dc _A-Z-a-z-0-9 &#124; head -c6`</description>
		<content:encoded><![CDATA[<p>Newline at the end:</p>
<p>$ echo `&lt; /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c6`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xfdgdfg</title>
		<link>http://www.foogazi.com/2008/04/14/quickzi-generate-random-passwords-on-the-linux-command-line/comment-page-1/#comment-26320</link>
		<dc:creator>xfdgdfg</dc:creator>
		<pubDate>Mon, 20 Oct 2008 22:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.foogazi.com/?p=203#comment-26320</guid>
		<description>Needs something to add a newline to the end.</description>
		<content:encoded><![CDATA[<p>Needs something to add a newline to the end.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

