<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Password Generator &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/password-generator/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Sun, 24 Apr 2011 08:52:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>Linux Random Password Generator With Bash Script</title>
		<link>https://lifelinux.com/linux-random-password-generator-with-bash-script/</link>
					<comments>https://lifelinux.com/linux-random-password-generator-with-bash-script/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Sun, 24 Apr 2011 08:52:50 +0000</pubDate>
				<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[Password Generator]]></category>
		<category><![CDATA[password random]]></category>
		<category><![CDATA[random with bash]]></category>
		<category><![CDATA[random with shell]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=301</guid>

					<description><![CDATA[<p>#!/bin/bash # Under RedHat / Centos if [ $# -gt 0 ] then MIN=$1 else MIN=8 fi DEL=`expr $RANDOM % 5` LEN=`expr $MIN + $DEL` cat /dev/urandom &#124; tr -dc "a-zA-Z0-9@#*=[]" &#124; dd bs=$LEN count=1 2>/dev/null echo;</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/linux-random-password-generator-with-bash-script/">Linux Random Password Generator With Bash Script</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><pre>
#!/bin/bash
# Under RedHat / Centos

if [ $# -gt 0 ]
then
	MIN=$1
else
	MIN=8
fi

DEL=`expr $RANDOM % 5`
LEN=`expr $MIN + $DEL`
cat /dev/urandom | tr -dc "a-zA-Z0-9@#*=[]" | dd  bs=$LEN count=1 2>/dev/null
echo;
</pre>
<g:plusone href="https://lifelinux.com/linux-random-password-generator-with-bash-script/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/linux-random-password-generator-with-bash-script/">Linux Random Password Generator With Bash Script</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/linux-random-password-generator-with-bash-script/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
