<?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 Archives - ITEC4B</title>
	<atom:link href="https://itec4b.com/tag/password/feed/" rel="self" type="application/rss+xml" />
	<link>https://itec4b.com/tag/password/</link>
	<description>Information Technology Expert Consulting</description>
	<lastBuildDate>Sat, 25 Feb 2023 17:36:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.3</generator>
	<item>
		<title>Linux: ASCII random string generator</title>
		<link>https://itec4b.com/linux-ascii-random-string-generator/</link>
		
		<dc:creator><![CDATA[author]]></dc:creator>
		<pubDate>Thu, 23 Feb 2023 16:20:49 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[password]]></category>
		<guid isPermaLink="false">https://itec4b.com/?p=1567</guid>

					<description><![CDATA[https://github.com/ITEC4B/ASCII-random-string-generator]]></description>
										<content:encoded><![CDATA[
<pre class="wp-block-code"><code><strong><span style="text-decoration: underline;">Generate a random ASCII string (40 printable characters without empty spaces)</span></strong>

$ cat /dev/urandom | tr -dc '&#91;:graph:]' | head -c 40
OR
$ cat /dev/urandom | tr -dc '&#91;:alnum:]&#91;:punct:]' | head -c 40

&#91;:lower:]   All lower case letters     abcdefghijklmnopqrstuvwxyz
&#91;:upper:]   All upper case letters     ABCDEFGHIJKLMNOPQRSTUVWXYZ
&#91;:alpha:]   All letters
&#91;:digit:]   All digits                 0123456789
&#91;:alnum:]   All letters and digits
&#91;:punct:]   All punctuation characters !"#$%&amp;'()*+,-./:;&lt;=>?@&#91;\]^_`{|}~
&#91;:graph:]   All printable characters, not including space
&#91;:print:]   All printable characters, including space</code></pre>



<p><a href="https://github.com/ITEC4B/ASCII-random-string-generator">https://github.com/ITEC4B/ASCII-random-string-generator</a></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
