<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Linux Man Pages</title>
	<atom:link href="http://linuxmanpages.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxmanpages.wordpress.com</link>
	<description>Linux Manual Pages - the guide to Linux</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:03:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='linuxmanpages.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Linux Man Pages</title>
		<link>http://linuxmanpages.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://linuxmanpages.wordpress.com/osd.xml" title="Linux Man Pages" />
	<atom:link rel='hub' href='http://linuxmanpages.wordpress.com/?pushpress=hub'/>
		<item>
		<title>dos2unix</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/12/dos2unix/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/12/dos2unix/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 06:38:06 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[dos2unix]]></category>
		<category><![CDATA[unix2dos]]></category>

		<guid isPermaLink="false">http://linuxmanpages.wordpress.com/?p=3167</guid>
		<description><![CDATA[dos2unix Section: (1) Updated: dos2unix v3.0 Index Return to Main Contents NAME dos2unix &#8211; DOS/MAC to UNIX text file format converter SYNOPSYS dos2unix [options] [-c convmode] [-o file ...] [-n infile outfile ...] Options: [-hkqV] [--help] [--keepdate] [--quiet] [--version] DESCRIPTION &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/12/dos2unix/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3167&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>dos2unix</h1>
<p>Section: (1)<br />
Updated: dos2unix v3.0<br />
<a href="#index">Index</a><br />
<a href="http://linuxmanpages.wordpress.com/index.php">Return to Main Contents</a></p>
<hr />
<p><a name="lbAB"></a></p>
<h2>NAME</h2>
<p>dos2unix &#8211; DOS/MAC to UNIX text file format converter</p>
<p><a name="lbAC"></a></p>
<h2>SYNOPSYS</h2>
<p>dos2unix [options] [-c convmode] [-o file ...] [-n infile outfile ...]</p>
<p>Options:</p>
<p>[-hkqV] [--help] [--keepdate] [--quiet] [--version]</p>
<p><a name="lbAD"></a></p>
<h2>DESCRIPTION</h2>
<p>This manual page documents dos2unix, the program that converts plain text<br />
files in DOS/MAC format to UNIX format.</p>
<p><a name="lbAE"></a></p>
<h2>OPTIONS</h2>
<p>The following options are available:</p>
<dl>
<dt><strong>-h &#8211;help</strong></dt>
</dl>
<p>Print online help.</p>
<p><strong>-k &#8211;keepdate</strong></p>
<p>Keep the date stamp of output file same as input file.</p>
<p><strong>-q &#8211;quiet</strong></p>
<p>Quiet mode. Suppress all warning and messages.</p>
<p><strong>-V &#8211;version</strong></p>
<p>Prints version information.</p>
<p><strong>-c &#8211;convmode convmode</strong></p>
<p>Sets conversion mode. Where convmode is one of:<br />
<strong>ASCII, 7bit, ISO, Mac</strong></p>
<p>with ASCII being the default.<br />
Simulates dos2unix under SunOS.</p>
<p><strong>-o &#8211;oldfile file &#8230;</strong></p>
<p>Old file mode. Convert the file and write output to it. The program<br />
default to run in this mode. Wildcard names may be used.</p>
<p><strong>-n &#8211;newfile infile outfile &#8230;</strong></p>
<p>New file mode. Convert the infile and write output to outfile. File names<br />
must be given in pairs and wildcard names should NOT be used or you WILL<br />
lost your files.</p>
<p><a name="lbAF"></a></p>
<h2>EXAMPLES</h2>
<p>Get input from stdin and write output to stdout.</p>
<pre><strong>dos2unix</strong></pre>
<p>Convert and replace a.txt. Convert and replace b.txt.</p>
<pre><strong>dos2unix a.txt b.txt</strong>
<strong>dos2unix -o a.txt b.txt</strong></pre>
<p>Convert and replace a.txt in ASCII conversion mode.</p>
<pre><strong>dos2unix a.txt -c iso b.txt</strong></pre>
<p>Convert and replace b.txt in ISO conversion mode.</p>
<pre><strong>dos2unix -c ascii a.txt -c iso b.txt</strong></pre>
<p>Convert c.txt from Mac to Unix ascii format.</p>
<pre><strong>dos2unix -c mac c.txt b.txt</strong></pre>
<p>Convert and replace a.txt while keeping original date stamp.</p>
<pre><strong>dos2unix -k a.txt</strong>
<strong>dos2unix -k -o a.txt</strong></pre>
<p>Convert a.txt and write to e.txt.</p>
<pre><strong>dos2unix -n a.txt e.txt</strong></pre>
<p>Convert a.txt and write to e.txt, keep date stamp of e.txt same as a.txt.</p>
<pre><strong>dos2unix -k -n a.txt e.txt </strong></pre>
<p>Convert and replace a.txt. Convert b.txt and write to e.txt.</p>
<pre><strong>dos2unix a.txt -n b.txt e.txt</strong>
<strong>dos2unix -o a.txt -n b.txt e.txt</strong></pre>
<p>Convert c.txt and write to e.txt. Convert and replace a.txt.<br />
Convert and replace b.txt. Convert d.txt and write to f.txt.</p>
<pre><strong>dos2unix -n c.txt e.txt -o a.txt b.txt -n d.txt f.txt</strong></pre>
<p><a name="lbAG"></a></p>
<h2>DIAGNOSTICS</h2>
<p><a name="lbAH"></a></p>
<h2>BUGS</h2>
<p>The program does not work properly under MSDOS in stdio processing mode.<br />
If you know why is that so, please tell me.</p>
<p><a name="lbAI"></a></p>
<h2>AUTHORS</h2>
<p>Benjamin Lin -<br />
<strong>&lt;<a href="mailto:blin@socs.uts.edu.au">blin@socs.uts.edu.au</a>&gt;</strong></p>
<p>Bernd Johannes Wuebben (mac2unix mode)<br />
<strong>&lt;<a href="mailto:wuebben@kde.org">wuebben@kde.org</a>&gt;</strong></p>
<p><a name="lbAJ"></a></p>
<h2>MISCELLANY</h2>
<p>Tested environment:</p>
<dl>
<dd>Linux 1.2.0 with GNU C 2.5.8</dd>
</dl>
<p>SunOS 4.1.3 with GNU C 2.6.3</p>
<p>MS-DOS 6.20 with Borland C++ 4.02</p>
<p>Suggestions and bug reports are welcome.</p>
<p><a name="lbAK"></a></p>
<h2>SEE ALSO</h2>
<p><a href="http://linuxmanpages.wordpress.com/index.php?1+unix2dos">unix2dos</a>(1) <a href="http://linuxmanpages.wordpress.com/index.php?1+mac2unix">mac2unix</a>(1)</p>
<hr />
<p><a name="index"></a></p>
<h2>Index</h2>
<dl>
<dt><a href="#lbAB">NAME</a></dt>
<dt><a href="#lbAC">SYNOPSYS</a></dt>
<dt><a href="#lbAD">DESCRIPTION</a></dt>
<dt><a href="#lbAE">OPTIONS</a></dt>
<dt><a href="#lbAF">EXAMPLES</a></dt>
<dt><a href="#lbAG">DIAGNOSTICS</a></dt>
<dt><a href="#lbAH">BUGS</a></dt>
<dt><a href="#lbAI">AUTHORS</a></dt>
<dt><a href="#lbAJ">MISCELLANY</a></dt>
<dt><a href="#lbAK">SEE ALSO</a></dt>
<dd></dd>
</dl>
<hr />
<p>This document was created by<br />
<a href="http://linuxmanpages.wordpress.com/index.php">man2html</a>,<br />
using the manual pages.</p>
<p>Time: 06:33:23 GMT, July 12, 2011</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3167&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/12/dos2unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+wall</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1wall-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1wall-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:21:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[wall]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1wall-2/</guid>
		<description><![CDATA[WALL Section: Linux User&#8217;s Manual (1)Updated: 15 April 2003IndexReturn to Main Contents &#160; NAME wall &#8212; send a message to everybody&#8217;s terminal. &#160; SYNOPSIS wall[-n][ message ] &#160; DESCRIPTION Wallsends a message to everybody logged in with theirmesg(1)permissionset toyes.The message &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1wall-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3044&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>WALL</h1>
<p>Section: Linux User&#8217;s Manual (1)<br />Updated: 15 April 2003<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr />
<p><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>wall &#8212; send a message to everybody&#8217;s terminal.
<p><a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>wall</b>[<b>-n</b>][<b> message </b>]
<p><a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p><b>Wall</b>sends a message to everybody logged in with their<i><a HREF="http://linux-man-pages.coding-school.com/1+mesg">mesg</a></i>(1)permissionset to<b>yes</b>.The message can be given as an argument to<i>wall</i>,or it can be sent to<i>wall</i>&#8216;sstandard input.  When using the standard input from a terminal,the message should be terminated with the<b>EOF</b>key (usually Control-D).
<p>The length of the message is limited to 20 lines.For every invocation of<i>wall</i>a notification will be written to syslog, with facility<b>LOG_USER</b>and level<b>LOG_INFO</b>.
<p><a NAME="lbAE">&nbsp;</a><br />
<h2>OPTIONS</h2>
<dl>
<dt><b>-n</b>
<dd>Suppresses the normal banner printed by<i>wall</i>,changing it to &quot;Remote broadcast message&quot;.This option is only available for root if<i>wall</i>is installed set-group-id, and is used by<i><a HREF="http://linux-man-pages.coding-school.com/8+rpc.walld">rpc.walld</a></i>(8).</dl>
<p>
<p><a NAME="lbAF">&nbsp;</a><br />
<h2>ENVIRONMENT</h2>
<p><i>Wall</i>ignores the<b>TZ</b>variable &#8211; the time printed in the banner is based on the system&#8217;slocal time.
<p><a NAME="lbAG">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p><i><a HREF="http://linux-man-pages.coding-school.com/1+mesg">mesg</a></i>(1),<i><a HREF="http://linux-man-pages.coding-school.com/8+rpc.rwalld">rpc.rwalld</a></i>(8).
<p><a NAME="lbAH">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Miquel van Smoorenburg, <a HREF="mailto:miquels@cistron.nl">miquels@cistron.nl</a><br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">OPTIONS</a>
<dd>
<dt><a HREF="#lbAF">ENVIRONMENT</a>
<dd>
<dt><a HREF="#lbAG">SEE ALSO</a>
<dd>
<dt><a HREF="#lbAH">AUTHOR</a>
<dd></dl>
<hr />
<blockquote><p>desc: wall &#8212; send a message to everybody&#8217;s terminal.
<p>keywords: linux, manual, pages, wall </p>
</blockquote>
<p>[tags]linux, manual, pages, wall[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3044/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3044&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1wall-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+uptime</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1uptime-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1uptime-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:20:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[uptime]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1uptime-2/</guid>
		<description><![CDATA[UPTIME Section: Linux User&#8217;s Manual (1)Updated: 26 Jan 1993IndexReturn to Main Contents &#160; NAME uptime &#8211; Tell how long the system has been running.&#160; SYNOPSIS uptimeuptime [-V]&#160; DESCRIPTION uptimegives a one line display of the following information.The current time,how long &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1uptime-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3081&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>UPTIME</h1>
<p>Section: Linux User&#8217;s Manual (1)<br />Updated: 26 Jan 1993<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>uptime &#8211; Tell how long the system has been running.<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>uptime</b><br /><b>uptime</b> [<b>-V</b>]<a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p><b>uptime</b>gives a one line display of the following information.The current time,how long the system has been running,how many users are currently logged on,and the system load averages for the past 1, 5, and 15 minutes.
<p>This is the same information contained in the header line displayed by <b><a HREF="http://linux-man-pages.coding-school.com/1+w">w</a></b>(1).<a NAME="lbAE">&nbsp;</a><br />
<h2>FILES</h2>
<p><i>/var/run/utmp</i><tt>&nbsp;</tt>information about who is currently logged on<br /><i>/proc</i><tt>&nbsp;</tt>process information<a NAME="lbAF">&nbsp;</a><br />
<h2>AUTHORS</h2>
<p><b>uptime</b>was written by Larry Greenfield &lt;<a HREF="mailto:greenfie@gauss.rutgers.edu">greenfie@gauss.rutgers.edu</a>&gt; and<br />Michael K. Johnson &lt;<a HREF="mailto:johnsonm@sunsite.unc.edu">johnsonm@sunsite.unc.edu</a>&gt;.
<p>Please send bug reports to &lt;<a HREF="mailto:albert@users.sf.net">albert@users.sf.net</a>&gt;<a NAME="lbAG">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p><b><a HREF="http://linux-man-pages.coding-school.com/1+ps">ps</a></b>(1),<b><a HREF="http://linux-man-pages.coding-school.com/1+top">top</a></b>(1),<b><a HREF="http://linux-man-pages.coding-school.com/5+utmp">utmp</a></b>(5),<b><a HREF="http://linux-man-pages.coding-school.com/1+w">w</a></b>(1)<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">FILES</a>
<dd>
<dt><a HREF="#lbAF">AUTHORS</a>
<dd>
<dt><a HREF="#lbAG">SEE ALSO</a>
<dd></dl>
<hr />
<blockquote><p>desc: uptime &#8211; Tell how long the system has been running. </p>
<p>keywords: linux, manual, pages, uptime </p>
</blockquote>
<p>[tags]linux, manual, pages, uptime[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3081/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3081/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3081/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3081/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3081/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3081/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3081/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3081/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3081&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1uptime-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+uname</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1uname-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1uname-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:19:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[uname]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1uname-2/</guid>
		<description><![CDATA[UNAME Section: User Commands (1)Updated: March 2009IndexReturn to Main Contents &#160; NAME uname &#8211; print system information&#160; SYNOPSIS uname[OPTION]&#8230;&#160; DESCRIPTION Print certain system information. With no OPTION, same as -s. -a, &#8211;all print all information, in the following order,except omit &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1uname-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3083&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>UNAME</h1>
<p>Section: User Commands (1)<br />Updated: March 2009<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>uname &#8211; print system information<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>uname</b>[<i>OPTION</i>]&#8230;<a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p>Print certain system information.  With no OPTION, same as <b>-s</b>.
<dl>
<dt><b>-a</b>, <b>&#8211;all</b>
<dd>print all information, in the following order,except omit <b>-p</b> and <b>-i</b> if unknown:
<dt><b>-s</b>, <b>&#8211;kernel-name</b>
<dd>print the kernel name
<dt><b>-n</b>, <b>&#8211;nodename</b>
<dd>print the network node hostname
<dt><b>-r</b>, <b>&#8211;kernel-release</b>
<dd>print the kernel release
<dt><b>-v</b>, <b>&#8211;kernel-version</b>
<dd>print the kernel version
<dt><b>-m</b>, <b>&#8211;machine</b>
<dd>print the machine hardware name
<dt><b>-p</b>, <b>&#8211;processor</b>
<dd>print the processor type or &quot;unknown&quot;
<dt><b>-i</b>, <b>&#8211;hardware-platform</b>
<dd>print the hardware platform or &quot;unknown&quot;
<dt><b>-o</b>, <b>&#8211;operating-system</b>
<dd>print the operating system
<dt><b>&#8211;help</b>
<dd>display this help and exit
<dt><b>&#8211;version</b>
<dd>output version information and exit</dl>
<p><a NAME="lbAE">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Written by David MacKenzie.<a NAME="lbAF">&nbsp;</a><br />
<h2>REPORTING BUGS</h2>
<p>Report bugs to &lt;<a HREF="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p>Copyright &#169; 2008 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later &lt;<a HREF="http://gnu.org/licenses/gpl.html">http://gnu.org/licenses/gpl.html</a>&gt;<br />This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.<a NAME="lbAH">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p><a HREF="http://linux-man-pages.coding-school.com/1+arch">arch</a>(1), <a HREF="http://linux-man-pages.coding-school.com/2+uname">uname</a>(2)
<p>The full documentation for<b>uname</b>is maintained as a Texinfo manual.  If the<b>info</b>and<b>uname</b>programs are properly installed at your site, the command
<dl>
<dt>
<dd><b>info uname</b></dl>
<p>should give you access to the complete manual.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">AUTHOR</a>
<dd>
<dt><a HREF="#lbAF">REPORTING BUGS</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd>
<dt><a HREF="#lbAH">SEE ALSO</a>
<dd></dl>
<hr />
<blockquote><p>desc: uname &#8211; print system information </p>
<p>keywords: linux, manual, pages, uname </p>
</blockquote>
<p>[tags]linux, manual, pages, uname[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3083/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3083/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3083/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3083/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3083/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3083/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3083/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3083&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1uname-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+true</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1true-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1true-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:19:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[true]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1true-2/</guid>
		<description><![CDATA[TRUE Section: User Commands (1)Updated: March 2009IndexReturn to Main Contents &#160; NAME true &#8211; do nothing, successfully&#160; SYNOPSIS true[ignored command line arguments]trueOPTION&#160; DESCRIPTION Exit with a status code indicating success. &#8211;help display this help and exit &#8211;version output version information &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1true-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3080&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>TRUE</h1>
<p>Section: User Commands (1)<br />Updated: March 2009<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>true &#8211; do nothing, successfully<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>true</b>[<i>ignored command line arguments</i>]<br /><b>true</b><i>OPTION</i><a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p>Exit with a status code indicating success.
<dl>
<dt><b>&#8211;help</b>
<dd>display this help and exit
<dt><b>&#8211;version</b>
<dd>output version information and exit</dl>
<p>NOTE: your shell may have its own version of true, which usually supersedesthe version described here.  Please refer to your shell&#8217;s documentationfor details about the options it supports.<a NAME="lbAE">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Written by Jim Meyering.<a NAME="lbAF">&nbsp;</a><br />
<h2>REPORTING BUGS</h2>
<p>Report bugs to &lt;<a HREF="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p>Copyright &#169; 2008 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later &lt;<a HREF="http://gnu.org/licenses/gpl.html">http://gnu.org/licenses/gpl.html</a>&gt;<br />This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.<a NAME="lbAH">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p>The full documentation for<b>true</b>is maintained as a Texinfo manual.  If the<b>info</b>and<b>true</b>programs are properly installed at your site, the command
<dl>
<dt>
<dd><b>info true</b></dl>
<p>should give you access to the complete manual.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">AUTHOR</a>
<dd>
<dt><a HREF="#lbAF">REPORTING BUGS</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd>
<dt><a HREF="#lbAH">SEE ALSO</a>
<dd></dl>
<hr />
<blockquote><p>desc: true &#8211; do nothing, successfully </p>
<p>keywords: linux, manual, pages, true </p>
</blockquote>
<p>[tags]linux, manual, pages, true[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3080/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3080&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1true-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+tr</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1tr-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1tr-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:18:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[tr]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1tr-2/</guid>
		<description><![CDATA[TR Section: User Commands (1)Updated: March 2009IndexReturn to Main Contents &#160; NAME tr &#8211; translate or delete characters&#160; SYNOPSIS tr[OPTION]&#8230; SET1 [SET2]&#160; DESCRIPTION Translate, squeeze, and/or delete characters from standard input,writing to standard output. -c, -C, &#8211;complement first complement SET1 &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1tr-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3045&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>TR</h1>
<p>Section: User Commands (1)<br />Updated: March 2009<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>tr &#8211; translate or delete characters<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>tr</b>[<i>OPTION</i>]&#8230; <i>SET1 </i>[<i>SET2</i>]<a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p>Translate, squeeze, and/or delete characters from standard input,writing to standard output.
<dl>
<dt><b>-c</b>, <b>-C</b>, <b>&#8211;complement</b>
<dd>first complement SET1
<dt><b>-d</b>, <b>&#8211;delete</b>
<dd>delete characters in SET1, do not translate
<dt><b>-s</b>, <b>&#8211;squeeze-repeats</b>
<dd>replace each input sequence of a repeated characterthat is listed in SET1 with a single occurrenceof that character
<dt><b>-t</b>, <b>&#8211;truncate-set1</b>
<dd>first truncate SET1 to length of SET2
<dt><b>&#8211;help</b>
<dd>display this help and exit
<dt><b>&#8211;version</b>
<dd>output version information and exit</dl>
<p>SETs are specified as strings of characters.  Most represent themselves.Interpreted sequences are:
<dl>
<dt>NNN
<dd>character with octal value NNN (1 to 3 octal digits)
<dt>
<dd>backslash
<dt>
<dd>audible BEL
<dt>
<dd>backspace
<dt>
<dd>form feed
<dt>
<dd>new line
<dt>
<dd>return
<dt>
<dd>horizontal tab
<dt>
<dd>vertical tab
<dt>CHAR1-CHAR2
<dd>all characters from CHAR1 to CHAR2 in ascending order
<dt>[CHAR*]
<dd>in SET2, copies of CHAR until length of SET1
<dt>[CHAR*REPEAT]
<dd>REPEAT copies of CHAR, REPEAT octal if starting with 0
<dt>[:alnum:]
<dd>all letters and digits
<dt>[:alpha:]
<dd>all letters
<dt>[:blank:]
<dd>all horizontal whitespace
<dt>[:cntrl:]
<dd>all control characters
<dt>[:digit:]
<dd>all digits
<dt>[:graph:]
<dd>all printable characters, not including space
<dt>[:lower:]
<dd>all lower case letters
<dt>[:print:]
<dd>all printable characters, including space
<dt>[:punct:]
<dd>all punctuation characters
<dt>[:space:]
<dd>all horizontal or vertical whitespace
<dt>[:upper:]
<dd>all upper case letters
<dt>[:xdigit:]
<dd>all hexadecimal digits
<dt>[=CHAR=]
<dd>all characters which are equivalent to CHAR</dl>
<p>Translation occurs if <b>-d</b> is not given and both SET1 and SET2 appear.<b>-t</b> may be used only when translating.  SET2 is extended to length ofSET1 by repeating its last character as necessary.  Excess charactersof SET2 are ignored.  Only [:lower:] and [:upper:] are guaranteed toexpand in ascending order; used in SET2 while translating, they mayonly be used in pairs to specify case conversion.  <b>-s</b> uses SET1 if nottranslating nor deleting; else squeezing uses SET2 and occurs aftertranslation or deletion.<a NAME="lbAE">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Written by Jim Meyering.<a NAME="lbAF">&nbsp;</a><br />
<h2>REPORTING BUGS</h2>
<p>Report bugs to &lt;<a HREF="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p>Copyright &#169; 2008 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later &lt;<a HREF="http://gnu.org/licenses/gpl.html">http://gnu.org/licenses/gpl.html</a>&gt;<br />This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.<a NAME="lbAH">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p>The full documentation for<b>tr</b>is maintained as a Texinfo manual.  If the<b>info</b>and<b>tr</b>programs are properly installed at your site, the command
<dl>
<dt>
<dd><b>info tr</b></dl>
<p>should give you access to the complete manual.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">AUTHOR</a>
<dd>
<dt><a HREF="#lbAF">REPORTING BUGS</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd>
<dt><a HREF="#lbAH">SEE ALSO</a>
<dd></dl>
<hr />
<blockquote><p>desc: tr &#8211; translate or delete characters
<dd>new line
<dt>
<dd>return
<dt>
<dd>horizontal tab
<dt>
<dd>vertical tab
<dt>CHAR1-CHAR2
<dd>all characters from CHAR1 to CHAR2 in ascending order
<dt>[CHAR*]
<dd>in SET2, copies of CHAR until length of SET1
<dt>[CHAR*REPEAT]
<dd>REPEAT copies of CHAR, REPEAT octal if starting with 0
<dt>[:alnum:]
<dd>all letters and digits
<dt>[:alpha:]
<dd>all letters
<dt>[:blank:]
<dd>all horizontal whitespace
<dt>[:cntrl:]
<dd>all control characters
<dt>[:digit:]
<dd>all digits
<dt>[:graph:]
<dd>all printable characters, not including space
<dt>[:lower:]
<dd>all lower case letters
<dt>[:print:]
<dd>all printable characters, including space
<dt>[:punct:]
<dd>all punctuation characters
<dt>[:space:]
<dd>all horizontal or vertical whitespace
<dt>[:upper:]
<dd>all upper case letters
<dt>[:xdigit:]
<dd>all hexadecimal digits
<dt>[=CHAR=]
<dd>all characters which are equivalent to CHAR</dl>
<p>Translation occurs if <b>-d</b> is not given and both SET1 and SET2 appear.<b>-t</b> may be used only when translating.  SET2 is extended to length ofSET1 by repeating its last character as necessary.  Excess charactersof SET2 are ignored.  Only [:lower:] and [:upper:] are guaranteed toexpand in ascending order; used in SET2 while translating, they mayonly be used in pairs to specify case conversion.  <b>-s</b> uses SET1 if nottranslating nor deleting; else squeezing uses SET2 and occurs aftertranslation or deletion.<a NAME="lbAE">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Written by Jim Meyering.<a NAME="lbAF">&nbsp;</a><br />
<h2>REPORTING BUGS</h2>
<p>Report bugs to &lt;<a HREF="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p>Copyright &#169; 2008 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later &lt;<a HREF="http://gnu.org/licenses/gpl.html">http://gnu.org/licenses/gpl.html</a>&gt;<br />This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.<a NAME="lbAH">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p>The full documentation for<b>tr</b>is maintained as a Texinfo manual.  If the<b>info</b>and<b>tr</b>programs are properly installed at your site, the command
<dl>
<dt>
<dd><b>info tr</b></dl>
<p>should give you access to the complete manual.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">AUTHOR</a>
<dd>
<dt><a HREF="#lbAF">REPORTING BUGS</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd>
<dt><a HREF="#lbAH">SEE ALSO</a>
<dd></dl>
<hr />
<p>keywords: linux, manual, pages, tr </p>
</blockquote>
<p>[tags]linux, manual, pages, tr[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3045/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3045&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1tr-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+test</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1test-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1test-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:17:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1test-2/</guid>
		<description><![CDATA[TEST Section: User Commands (1)Updated: March 2009IndexReturn to Main Contents &#160; NAME test &#8211; check file types and compare values&#160; SYNOPSIS testEXPRESSIONtest [EXPRESSION ][][OPTION&#160; DESCRIPTION Exit with the status determined by EXPRESSION. --help display this help and exit --version output &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1test-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3085&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>TEST</h1>
<p>Section: User Commands (1)<br />Updated: March 2009<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>test &#8211; check file types and compare values<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>test</b><i>EXPRESSION</i><br /><b>test</b>
<p><b>[</b><i>EXPRESSION </i>]<br /><b>[</b>]<br /><b>[</b><i>OPTION</i><a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p>Exit with the status determined by EXPRESSION.
<dl>
<dt><b>--help</b>
<dd>display this help and exit
<dt><b>--version</b>
<dd>output version information and exit</dl>
<p>An omitted EXPRESSION defaults to false.  Otherwise,EXPRESSION is true or false and sets exit status.  It is one of:
<dl>
<dt>( EXPRESSION )
<dd>EXPRESSION is true
<dt>! EXPRESSION
<dd>EXPRESSION is false
<dt>EXPRESSION1 <b>-a</b> EXPRESSION2
<dd>both EXPRESSION1 and EXPRESSION2 are true
<dt>EXPRESSION1 <b>-o</b> EXPRESSION2
<dd>either EXPRESSION1 or EXPRESSION2 is true
<dt><b>-n</b> STRING
<dd>the length of STRING is nonzero
<dt>STRING
<dd>equivalent to <b>-n</b> STRING
<dt><b>-z</b> STRING
<dd>the length of STRING is zero
<dt>STRING1 = STRING2
<dd>the strings are equal
<dt>STRING1 != STRING2
<dd>the strings are not equal
<dt>INTEGER1 <b>-eq</b> INTEGER2
<dd>INTEGER1 is equal to INTEGER2
<dt>INTEGER1 <b>-ge</b> INTEGER2
<dd>INTEGER1 is greater than or equal to INTEGER2
<dt>INTEGER1 <b>-gt</b> INTEGER2
<dd>INTEGER1 is greater than INTEGER2
<dt>INTEGER1 <b>-le</b> INTEGER2
<dd>INTEGER1 is less than or equal to INTEGER2
<dt>INTEGER1 <b>-lt</b> INTEGER2
<dd>INTEGER1 is less than INTEGER2
<dt>INTEGER1 <b>-ne</b> INTEGER2
<dd>INTEGER1 is not equal to INTEGER2
<dt>FILE1 <b>-ef</b> FILE2
<dd>FILE1 and FILE2 have the same device and inode numbers
<dt>FILE1 <b>-nt</b> FILE2
<dd>FILE1 is newer (modification date) than FILE2
<dt>FILE1 <b>-ot</b> FILE2
<dd>FILE1 is older than FILE2
<dt><b>-b</b> FILE
<dd>FILE exists and is block special
<dt><b>-c</b> FILE
<dd>FILE exists and is character special
<dt><b>-d</b> FILE
<dd>FILE exists and is a directory
<dt><b>-e</b> FILE
<dd>FILE exists
<dt><b>-f</b> FILE
<dd>FILE exists and is a regular file
<dt><b>-g</b> FILE
<dd>FILE exists and is set-group-ID
<dt><b>-G</b> FILE
<dd>FILE exists and is owned by the effective group ID
<dt><b>-h</b> FILE
<dd>FILE exists and is a symbolic link (same as <b>-L</b>)
<dt><b>-k</b> FILE
<dd>FILE exists and has its sticky bit set
<dt><b>-L</b> FILE
<dd>FILE exists and is a symbolic link (same as <b>-h</b>)
<dt><b>-O</b> FILE
<dd>FILE exists and is owned by the effective user ID
<dt><b>-p</b> FILE
<dd>FILE exists and is a named pipe
<dt><b>-r</b> FILE
<dd>FILE exists and read permission is granted
<dt><b>-s</b> FILE
<dd>FILE exists and has a size greater than zero
<dt><b>-S</b> FILE
<dd>FILE exists and is a socket
<dt><b>-t</b> FD
<dd>file descriptor FD is opened on a terminal
<dt><b>-u</b> FILE
<dd>FILE exists and its set-user-ID bit is set
<dt><b>-w</b> FILE
<dd>FILE exists and write permission is granted
<dt><b>-x</b> FILE
<dd>FILE exists and execute (or search) permission is granted</dl>
<p>Except for <b>-h</b> and <b>-L</b>, all FILE-related tests dereference symbolic links.Beware that parentheses need to be escaped (e.g., by backslashes) for shells.INTEGER may also be <b>-l</b> STRING, which evaluates to the length of STRING.
<p>NOTE: [ honors the <b>--help</b> and <b>--version</b> options, but test does not.test treats each of those as it treats any other nonempty STRING.
<p>NOTE: your shell may have its own version of test and/or [, which usually supersedesthe version described here.  Please refer to your shell's documentationfor details about the options it supports.<a NAME="lbAE">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Written by Kevin Braunsdorf and Matthew Bradburn.<a NAME="lbAF">&nbsp;</a><br />
<h2>REPORTING BUGS</h2>
<p>Report bugs to &lt;<a HREF="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p>Copyright &#169; 2008 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later &lt;<a HREF="http://gnu.org/licenses/gpl.html">http://gnu.org/licenses/gpl.html</a>&gt;<br />This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.<a NAME="lbAH">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p>The full documentation for<b>test</b>is maintained as a Texinfo manual.  If the<b>info</b>and<b>test</b>programs are properly installed at your site, the command
<dl>
<dt>
<dd><b>info test</b></dl>
<p>should give you access to the complete manual.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">AUTHOR</a>
<dd>
<dt><a HREF="#lbAF">REPORTING BUGS</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd>
<dt><a HREF="#lbAH">SEE ALSO</a>
<dd></dl>
<hr />
<blockquote><p>desc: test - check file types and compare values </p>
<p>keywords: linux, manual, pages, test </p>
</blockquote>
<p>[tags]linux, manual, pages, test[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3085/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3085&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1test-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+su</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1su-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1su-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:16:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[su]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1su-2/</guid>
		<description><![CDATA[SU Section: User Commands (1)Updated: March 2009IndexReturn to Main Contents &#160; NAME su &#8211; run a shell with substitute user and group IDs&#160; SYNOPSIS su[OPTION]&#8230; [-] [USER [ARG]&#8230;]&#160; DESCRIPTION Usage: su [OPTION]&#8230; [-] [USER [ARG]&#8230;]Change the effective user id and &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1su-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3073&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>SU</h1>
<p>Section: User Commands (1)<br />Updated: March 2009<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>su &#8211; run a shell with substitute user and group IDs<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>su</b>[<i>OPTION</i>]&#8230; [<i>-</i>] [<i>USER </i>[<i>ARG</i>]&#8230;]<a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p>Usage: su [OPTION]&#8230; [-] [USER [ARG]&#8230;]Change the effective user id and group id to that of USER.
<dl>
<dt>-, <b>-l</b>, <b>&#8211;login</b>
<dd>make the shell a login shell
<dt><b>-c</b>, <b>&#8211;command</b>=<i>COMMAND</i>
<dd>pass a single COMMAND to the shell with <b>-c</b>
<dt><b>&#8211;session-command</b>=<i>COMMAND</i>
<dd>pass a single COMMAND to the shell with <b>-c</b>and do not create a new session
<dt><b>-f</b>, <b>&#8211;fast</b>
<dd>pass <b>-f</b> to the shell (for csh or tcsh)
<dt><b>-m</b>, <b>&#8211;preserve-environment</b>
<dd>do not reset environment variables
<dt><b>-p</b>
<dd>same as <b>-m</b>
<dt><b>-s</b>, <b>&#8211;shell</b>=<i>SHELL</i>
<dd>run SHELL if /etc/shells allows it
<dt><b>&#8211;help</b>
<dd>display this help and exit
<dt><b>&#8211;version</b>
<dd>output version information and exit</dl>
<p>A mere &#8211; implies <b>-l</b>.   If USER not given, assume root.<a NAME="lbAE">&nbsp;</a><br />
<h2>AUTHOR</h2>
<p>Written by David MacKenzie.<a NAME="lbAF">&nbsp;</a><br />
<h2>REPORTING BUGS</h2>
<p>Report bugs to &lt;<a HREF="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p>Copyright &#169; 2008 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later &lt;<a HREF="http://gnu.org/licenses/gpl.html">http://gnu.org/licenses/gpl.html</a>&gt;<br />This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.<a NAME="lbAH">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p>The full documentation for<b>su</b>is maintained as a Texinfo manual.  If the<b>info</b>and<b>su</b>programs are properly installed at your site, the command
<dl>
<dt>
<dd><b>info su</b></dl>
<p>should give you access to the complete manual.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">AUTHOR</a>
<dd>
<dt><a HREF="#lbAF">REPORTING BUGS</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd>
<dt><a HREF="#lbAH">SEE ALSO</a>
<dd></dl>
<hr />
<blockquote><p>desc: su &#8211; run a shell with substitute user and group IDs </p>
<p>keywords: linux, manual, pages, su </p>
</blockquote>
<p>[tags]linux, manual, pages, su[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3073/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3073&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1su-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+strings</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1strings-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1strings-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:15:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[strings]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1strings-2/</guid>
		<description><![CDATA[STRINGS Section: GNU Development Tools (1)Updated: 2009-02-02IndexReturn to Main Contents &#160; NAME strings &#8211; print the strings of printable characters in files.&#160; SYNOPSIS strings [-afov] [-min-len]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[-n&#160;min-len]&#160;[--bytes=min-len]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[-t&#160;radix]&#160;[--radix=radix]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[-e&#160;encoding]&#160;[--encoding=encoding]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[-]&#160;[--all]&#160;[--print-file-name]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[-T&#160;bfdname]&#160;[--target=bfdname]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[--help]&#160;[--version]&#160;file&#8230;&#160; DESCRIPTION For each file given, GNU strings prints the printablecharacter sequences that are at &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1strings-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3078&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>STRINGS</h1>
<p>Section: GNU Development Tools (1)<br />Updated: 2009-02-02<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>strings &#8211; print the strings of printable characters in files.<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><a NAME="ixAAC"></a>strings [<b>-afov</b>] [<b>-</b><i>min-len</i>]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<b>-n</b>&nbsp;<i>min-len</i>]&nbsp;[<b>--bytes=</b><i>min-len</i>]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<b>-t</b>&nbsp;<i>radix</i>]&nbsp;[<b>--radix=</b><i>radix</i>]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<b>-e</b>&nbsp;<i>encoding</i>]&nbsp;[<b>--encoding=</b><i>encoding</i>]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<b>-</b>]&nbsp;[<b>--all</b>]&nbsp;[<b>--print-file-name</b>]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<b>-T</b>&nbsp;<i>bfdname</i>]&nbsp;[<b>--target=</b><i>bfdname</i>]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<b>--help</b>]&nbsp;[<b>--version</b>]&nbsp;<i>file</i>&#8230;<a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p><a NAME="ixAAD"></a>For each <i>file</i> given, <font SIZE="-1">GNU</font> <b>strings</b> prints the printablecharacter sequences that are at least 4 characters long (or the numbergiven with the options below) and are followed by an unprintablecharacter.  By default, it only prints the strings from the initializedand loaded sections of object files; for other types of files, it printsthe strings from the whole file.
<p><b>strings</b> is mainly useful for determining the contents of non-textfiles.<a NAME="lbAE">&nbsp;</a><br />
<h2>OPTIONS</h2>
<p><a NAME="ixAAE"></a>
<dl>
<dt><b>-a</b>
<dd><a NAME="ixAAF"></a>
<dt><b>&#8211;all</b>
<dd><a NAME="ixAAG"></a>
<dt><b>-</b>
<dd><a NAME="ixAAH"></a>Do not scan only the initialized and loaded sections of object files;scan the whole files.
<dt><b>-f</b>
<dd><a NAME="ixAAI"></a>
<dt><b>&#8211;print-file-name</b>
<dd><a NAME="ixAAJ"></a>Print the name of the file before each string.
<dt><b>&#8211;help</b>
<dd><a NAME="ixAAK"></a>Print a summary of the program usage on the standard output and exit.
<dt><b>-</b><i>min-len</i>
<dd><a NAME="ixAAL"></a>
<dt><b>-n</b> <i>min-len</i>
<dd><a NAME="ixAAM"></a>
<dt><b>&#8211;bytes=</b><i>min-len</i>
<dd><a NAME="ixAAN"></a>Print sequences of characters that are at least <i>min-len</i> characterslong, instead of the default 4.
<dt><b>-o</b>
<dd><a NAME="ixAAO"></a>Like <b>-t o</b>.  Some other versions of <b>strings</b> have <b>-o</b>act like <b>-t d</b> instead.  Since we can not be compatible with bothways, we simply chose one.
<dt><b>-t</b> <i>radix</i>
<dd><a NAME="ixAAP"></a>
<dt><b>&#8211;radix=</b><i>radix</i>
<dd><a NAME="ixAAQ"></a>Print the offset within the file before each string.  The singlecharacter argument specifies the radix of the offset&#8212;<b>o</b> foroctal, <b>x</b> for hexadecimal, or <b>d</b> for decimal.
<dt><b>-e</b> <i>encoding</i>
<dd><a NAME="ixAAR"></a>
<dt><b>&#8211;encoding=</b><i>encoding</i>
<dd><a NAME="ixAAS"></a>Select the character encoding of the strings that are to be found.Possible values for <i>encoding</i> are: <b>s</b> = single-7-bit-bytecharacters (<font SIZE="-1">ASCII</font>, <font SIZE="-1">ISO</font> 8859, etc., default), <b>S</b> =single-8-bit-byte characters, <b>b</b> = 16-bit bigendian, <b>l</b> =16-bit littleendian, <b>B</b> = 32-bit bigendian, <b>L</b> = 32-bitlittleendian. Useful for finding wide character strings.
<dt><b>-T</b> <i>bfdname</i>
<dd><a NAME="ixAAT"></a>
<dt><b>&#8211;target=</b><i>bfdname</i>
<dd><a NAME="ixAAU"></a>Specify an object code format other than your system&#8217;s default format.
<dt><b>-v</b>
<dd><a NAME="ixAAV"></a>
<dt><b>&#8211;version</b>
<dd><a NAME="ixAAW"></a>Print the program version number on the standard output and exit.
<dt><b>@</b><i>file</i>
<dd><a NAME="ixAAX"></a>Read command-line options from <i>file</i>.  The options read areinserted in place of the original @<i>file</i> option.  If <i>file</i>does not exist, or cannot be read, then the option will be treatedliterally, and not removed.
<p>Options in <i>file</i> are separated by whitespace.  A whitespacecharacter may be included in an option by surrounding the entireoption in either single or double quotes.  Any character (including abackslash) may be included by prefixing the character to be includedwith a backslash.  The <i>file</i> may itself contain additional@<i>file</i> options; any such options will be processed recursively.</dl>
<p><a NAME="lbAF">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p><a NAME="ixAAY"></a><i><a HREF="http://linux-man-pages.coding-school.com/1+ar">ar</a></i>(1), <i><a HREF="http://linux-man-pages.coding-school.com/1+nm">nm</a></i>(1), <i><a HREF="http://linux-man-pages.coding-school.com/1+objdump">objdump</a></i>(1), <i><a HREF="http://linux-man-pages.coding-school.com/1+ranlib">ranlib</a></i>(1), <i><a HREF="http://linux-man-pages.coding-school.com/1+readelf">readelf</a></i>(1)and the Info entries for <i>binutils</i>.<a NAME="lbAG">&nbsp;</a><br />
<h2>COPYRIGHT</h2>
<p><a NAME="ixAAZ"></a>Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
<p>Permission is granted to copy, distribute and/or modify this documentunder the terms of the <font SIZE="-1">GNU</font> Free Documentation License, Version 1.2or any later version published by the Free Software Foundation;with no Invariant Sections, with no Front-Cover Texts, and with noBack-Cover Texts.  A copy of the license is included in thesection entitled &#8220;<font SIZE="-1">GNU</font> Free Documentation License&#8221;.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">OPTIONS</a>
<dd>
<dt><a HREF="#lbAF">SEE ALSO</a>
<dd>
<dt><a HREF="#lbAG">COPYRIGHT</a>
<dd></dl>
<hr />
<blockquote><p>desc: strings &#8211; print the strings of printable characters in files. </p>
<p>keywords: linux, manual, pages, strings </p>
</blockquote>
<p>[tags]linux, manual, pages, strings[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3078/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3078&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1strings-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>1+rdist</title>
		<link>http://linuxmanpages.wordpress.com/2011/07/11/1rdist-2/</link>
		<comments>http://linuxmanpages.wordpress.com/2011/07/11/1rdist-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:14:33 +0000</pubDate>
		<dc:creator>kalamundawebdesign</dc:creator>
				<category><![CDATA[manpages]]></category>
		<category><![CDATA[rdist]]></category>

		<guid isPermaLink="false">http://linux-man-pages.coding-school.com/wordpress/1rdist-2/</guid>
		<description><![CDATA[RDIST Section: User Commands (1)Updated: June 13, 1998IndexReturn to Main Contents &#160; NAME rdist &#8211; remote file distribution client program&#160; SYNOPSIS rdist[ -DFn][ -A num] [ -a num ][ -d var=value ] [ -l&#60;local logopts&#62;] [ -L&#60;remote logopts&#62;] [ -f &#8230; <a href="http://linuxmanpages.wordpress.com/2011/07/11/1rdist-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3054&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>RDIST</h1>
<p>Section: User Commands  (1)<br />Updated: June 13, 1998<br /><a HREF="#index">Index</a><a HREF="http://linux-man-pages.coding-school.com/">Return to Main Contents</a><br />
<hr /><a NAME="lbAB">&nbsp;</a><br />
<h2>NAME</h2>
<p>rdist &#8211; remote file distribution client program<a NAME="lbAC">&nbsp;</a><br />
<h2>SYNOPSIS</h2>
<p><b>rdist</b>[ <b>-DFn</b>][ <b>-A </b><i>num</i>] [ <b>-a </b><i>num </i>][ <b>-d </b><i>var=value </i>] [ <b>-l</b><i>&lt;local logopts&gt;</i>] [ <b>-L</b><i>&lt;remote logopts&gt;</i>] [ <b>-f </b><i>distfile </i>] [ <b>-M </b><i>maxproc</i>] [ <b>-m </b><i>host </i>][ <b>-o</b><i>distopts</i>][ <b>-t </b><i>timeout </i>] [<b>-p</b><i>&lt;rdistd-path&gt;</i>][<b>-P</b><i>&lt;transport-path&gt;</i>][ <i>name ...</i>]
<p><b>rdist</b><b>-DFn</b><b>-c </b><i>name &#8230; </i><i>[login@]host[:dest]</i>
<p><b>rdist</b><b>-Server</b>
<p><b>rdist</b><b>-V</b><a NAME="lbAD">&nbsp;</a><br />
<h2>DESCRIPTION</h2>
<p><i>Rdist</i>is a program to maintain identical copies of files over multiple hosts. It preserves the owner, group, mode, and mtime of files if possible andcan update programs that are executing.<i>Rdist</i>reads commands from<i>distfile</i>to direct the updating of files and/or directories.If<i>distfile</i>is `-&#8217;, the standard input is used.If no<b>-f</b>option is present, the program looks first for `distfile&#8217;,then `Distfile&#8217; to use as the input.If no names are specified on the command line,<i>rdist</i>will update all of the files and directories listed in<i>distfile</i>.Otherwise, the argument is taken to be the name of a file to be updatedor the label of a command to execute. If label and file names conflict,it is assumed to be a label.These may be used together to update specific filesusing specific commands.
<p>The<b>-c</b>option forces<i>rdist</i>to interpret the remaining arguments as a small<i>distfile</i>.The equivalent distfile is as follows.
<pre>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;( <i>name</i> ... ) -&gt; [<i>login</i>@]<i>host</i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;install       [<i>dest</i>] ;</pre>
<p>The<b>-Server</b>option is recognized to provide partial backward compatible supportfor older versions of<i>rdist</i>which used this option to put<i>rdist</i>into server mode.If<i>rdist</i>is started with the <b>-Server</b>command line option, it will attempt to exec (run) the old version of<i>rdist.</i>This option will only work if <i>rdist</i>was compiled with the location of the old rdist(the path<i>/usr/bin/oldrdist</i>is used on Red Hat linux)and that program is available at run time.
<p><i>Rdist</i>can use either the<i><a HREF="http://linux-man-pages.coding-school.com/3+rcmd">rcmd</a>(3)</i>function call or run an arbitrary transport program such as<i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c)</i>to access each target host.The method used is selected at compile-time.However, if the later method is used, the transport program can bespecified at run-time on the command line with the default being <i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c).</i>If the<i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c)</i>method is used andthe target host is the string<b>localhost</b>and the remote user name is the same as the local user name,<i>rdist</i>will run the command
<pre>
<dl>
<dt>
<dd><b>/bin/sh -c rdistd -S</b></dl>
</pre>
<p>Otherwise<i>rdist</i>run will run the command
<pre>
<dl>
<dt>
<dd><b>rsh </b><i>host</i><b> -l </b><i>remuser </i><b>rdistd -S</b></dl>
</pre>
<p>where <i>host</i>is the name of the target host,<i>remuser</i>is the name of the user to make the connection as and,<i>rdistd</i>is the rdist server command on the target host as shown below.To use a transport program other than<i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c)</i>use the <b>-P</b>option.Whatever transport program is used, must be compatible with the abovespecified syntax for<i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c).</i>If the transport program is not, it should be <i>wrapped</i>in a shell script which does understand this command line syntax andwhich then executes the real transport program.
<p>Here&#8217;s an example which uses <i><a HREF="http://linux-man-pages.coding-school.com/1+ssh">ssh</a>(1)</i>as the transport:
<pre>
<dl>
<dt>
<dd><b>rdist -P /usr/local/bin/ssh -f myDistfile</b></dl>
</pre>
<p>If the<i><a HREF="http://linux-man-pages.coding-school.com/3+rcmd">rcmd</a>(3) </i>method is used, then<i>rdist</i>makes the connection to the target host itself and runsthe <i>rdistd</i>server program as shown below.The default, and preferred method, is to use<i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c)</i>to make the connection to target hosts.  This allows <i>rdist</i>to be run without being setuid to &#8220;root&#8221;.
<p>On each target host<i>Rdist</i>will attempt to run the command
<pre>
<dl>
<dt>
<dd><i>rdistd -S</i></dl>
</pre>
<p>or
<pre>
<dl>
<dt>
<dd><i>&lt;rdistd path&gt; -S</i></dl>
</pre>
<p>if the<i>-p</i>option was specified.If no<b>-p </b>option is included,or the<i>&lt;rdistd path&gt;</i>is a simple filename,<i>rdistd</i>or<i>&lt;rdistd path&gt;</i>must be somewhere in the <b>$PATH</b>of the user running<b>rdist</b>on the remote (target) host.<a NAME="lbAE">&nbsp;</a><br />
<h2>OPTIONS</h2>
<dl>
<dt><b>-A </b><i>num</i>
<dd>Set the minimum number of free files (inodes) on a filesystem that must existfor <i>rdist</i>to update or install a file.
<dt><b>-a </b><i>num</i>
<dd>Set the minimum amount of free space (in bytes) on a filesystem that must existfor <i>rdist</i>to update or install a file.
<dt><b>-D</b>
<dd>Enable copious debugging messages.
<dt><b>-d </b><i>var=value</i>
<dd>Define<i>var</i>to have<i>value</i>.Thisoption is used to define or override variable definitions in the<i>distfile</i>.<i>Value</i>can be the empty string, one name, or a list of names surrounded byparentheses and separated by tabs and/or spaces.
<dt><b>-F</b>
<dd>Do not fork any child <i>rdist</i>processes.All clients are updated sequentially.
<dt><b>-f </b><i>distfile</i>
<dd>Set the name of the distfile to use to be<i>distfile .</i>If <i>distfile</i>is specified as&#8220;-&#8221; (dash)then read from standard input (stdin).
<dt><b>-l </b><i>logopts</i>
<dd>Set local logging options.See the section <b>MESSAGE LOGGING</b>for details on the syntax for<i>logopts.</i>
<dt><b>-L </b><i>logopts</i>
<dd>Set remote logging options.<i>logopts</i>is the same as for local loggingexcept the values are passed to the remoteserver (<i>rdistd</i>).See the section <b>MESSAGE LOGGING</b>for details on the syntax for<i>logopts.</i>
<dt><b>-M </b><i>num</i>
<dd>Set the maximum number of simultaneouslyrunning child<i>rdist</i>processes to<i>num.</i>The default is 4.
<dt><b>-m </b><i>machine</i>
<dd>Limit which machines are to be updated. Multiple<b>-m</b>arguments can be given to limit updates to a subset of the hosts listed in the<i>distfile</i>.
<dt><b>-n</b>
<dd>Print the commands without executing them. This option isuseful for debugging<i>distfile</i>.
<dt><b>-o</b><i>distopts</i>
<dd>Specify the dist options to enable.<i>distopts</i>is a comma separated list of options which are listed below.The valid values for<i>distopts</i>are:
<dl>
<dt>
<dd>
<dl>
<dt><b>verify</b>
<dd>Verify that the files are up to date on all the hosts. Any filesthat are out of date will be displayed but no files will be changednor any mail sent.
<dt><b>whole</b>
<dd>Whole mode. The whole file name is appended to the destination directoryname.  Normally, only the last component of a name is used when renaming files.This will preserve the directory structure of the files beingcopied instead of flattening the directory structure. For example,rdisting a list of files such as<i>/path/dir1/f1 </i>and<i>/path/dir2/f2 </i>to <i>/tmp/dir </i>would createfiles <i>/tmp/dir/path/dir1/f1 </i>and <i>/tmp/dir/path/dir2/f2 </i>instead of <i>/tmp/dir/dir1/f1 </i>and <i>/tmp/dir/dir2/f2.</i>
<dt><b>noexec</b>
<dd>Automatically exclude executable files that are in <i><a HREF="http://linux-man-pages.coding-school.com/5+a.out">a.out</a>(5)</i>format from bei<br />
ng checked or updated.
<dt><b>younger</b>
<dd>Younger mode. Files are normally updated if their<i>mtime</i>and<i>size</i>(see<i><a HREF="http://linux-man-pages.coding-school.com/2+stat">stat</a></i>(2))disagree. Thisoption causes<i>rdist</i>not to update files that are younger than the master copy.This can be usedto prevent newer copies on other hosts from being replaced.A warning message is printed for files which are newer than the master copy.
<dt><b>compare</b>
<dd>Binary comparison. Perform a binary comparison and update files if they differrather than comparing dates and sizes.
<dt><b>follow</b>
<dd>Follow symbolic links. Copy the file that the link points to rather than thelink itself.
<dt><b>ignlnks</b>
<dd>Ignore unresolved links.<i>Rdist</i>will normally try to maintain the link structure of files being transferredand warn the user if all the links cannot be found.
<dt><b>chknfs</b>
<dd>Do not check or update files on target host thatreside on NFS filesystems.
<dt><b>chkreadonly</b>
<dd>Enable check on target hostto see if a file resides on a read-only filesystem.If a file does, then no checking or updating of the file is attempted.
<dt><b>chksym</b>
<dd>If the target on the remote host is a symbolic link, but is not on themaster host, the remote target will be left a symbolic link.This behavior is generally considered a bug in the original version of<i>rdist,</i>but is present to allow compatibility with older versions.
<dt><b>quiet</b>
<dd>Quiet mode. Files that are being modified are normallyprinted on standard output. Thisoption suppresses this.
<dt><b>remove</b>
<dd>Remove extraneous files. If a directory is being updated, any files that existon the remote host that do not exist in the master directory are removed.This is useful for maintaining truly identical copies of directories.
<dt><b>nochkowner</b>
<dd>Do not check user ownership of files that already exist.The file ownership is only set when the file is updated.
<dt><b>nochkgroup</b>
<dd>Do not check group ownership of files that already exist.The file ownership is only set when the file is updated.
<dt><b>nochkmode</b>
<dd>Do not check file and directory permission modes.The permission mode is only set when the file is updated.
<dt><b>nodescend</b>
<dd>Do not descend into a directory.Normally <i>rdist</i>will recursively check directories.If this option is enabled, then any files listed in thefile list in the distfile that are directories are not recursively scanned.Only the existence, ownership, and mode of the directory are checked.
<dt><b>numchkgroup</b>
<dd>Use the numeric group id (gid) to check group ownership instead ofthe group name.
<dt><b>numchkowner</b>
<dd>Use the numeric user id (uid) to check user ownership instead ofthe user name.
<dt><b>savetargets</b>
<dd>Save files that are updated instead of removing them.Any target file that is updates is first rename from<b>file</b>to<b>file.OLD.</b>
<dt><b>sparse</b>
<dd>Enable checking for sparse (aka <i>wholely</i>) files.  One of the mostcommon types of sparse files are those produced by<b><a HREF="http://linux-man-pages.coding-school.com/3+ndbm">ndbm</a>(3).</b>This option adds some additional processing overhead so it shouldonly be enabled for targets likely to contain sparse files.</dl>
</dl>
<dt><b>-p </b><i>&lt;rdistd-path&gt;</i>
<dd>Set the path where the rdistd server is searched for on the target host.
<dt><b>-P </b><i>&lt;transport-path&gt;</i>
<dd>Set the path to the transport command to be used.This is normally<i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c)</i>but can be any other program &#8211; such as <i><a HREF="http://linux-man-pages.coding-school.com/1+ssh">ssh</a>(1) -</i>which understands <i><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c)</i>command line syntax and which provides an appropriate connection to theremote host.The<i>transport-path</i>may be a colon seperated list of possible pathnames.In this case, the first component of the path to exist is used.i.e. <b>/usr/ucb/rsh:/usr/bin/remsh,</b><b>/usr/bsd/rsh.</b>
<dt><b>-t </b><i>timeout</i>
<dd>Set the timeout period (in seconds) for waiting for responses from the remote <i>rdist</i>server.The default is 900 seconds.
<dt><b>-V</b>
<dd>Print version information and exit.</dl>
<p><a NAME="lbAF">&nbsp;</a><br />
<h2>MESSAGE LOGGING</h2>
<p><i>Rdist</i>uses a collection of predefined message<b>facilities</b>that each contain a list of message<b>types</b>specifying which types of messages to send to that <i>facility.</i>The local client (<i>rdist</i>) and the remote server (<i>rdistd</i>) eachmaintaintheir own copy of what types of messages to log to what facilities.
<p>The <b>-l</b><i>logopts</i>option to<i>rdist</i>tells<i>rdist</i>what logging options to use locally.The <b>-L</b><i>logopts</i>option to<i>rdist</i>tells<i>rdist</i>what logging options to pass to the remote<i>rdistd</i>server.
<p>The form of<i>logopts</i>should be of form
<dl>
<dt>
<dd><i>facility</i><b>=</b><i>types</i><b>:</b><i>facility</i><b>=</b><i>types&#8230;</i></dl>
<p>The valid facility names are:
<dl>
<dt>
<dd>
<dl>
<dt><b>stdout</b>
<dd>Messages to standard output.
<dt><b>file</b>
<dd>Log to a file.  To specify the file name, use the format &#8220;<b>file=</b><i>filename</i><b>=</b><i>types</i>&#8221;.e.g.<b>&#8220;file=/tmp/rdist.log=all,debug&#8221;.</b>
<dt><b>syslog</b>
<dd>Use the <i><a HREF="http://linux-man-pages.coding-school.com/8+syslogd">syslogd</a>(8)</i>facility.
<dt><b>notify</b>
<dd>Use the internal<i>rdist</i><b>notify</b>facility.This facility is used in conjunction with the<b>notify</b>keyword in a <i>distfile</i>to specify what messages are mailed to the<b>notify</b>address.</dl>
</dl>
<p><i>types</i>should be a comma separated list of message types.  Each message type specified enables that message level.  This is unlike the<i><a HREF="http://linux-man-pages.coding-school.com/3+syslog">syslog</a>(3)</i>system facility which uses an ascending order scheme.The followingare the valid <i>types:</i>
<dl>
<dt>
<dd>
<dl>
<dt><b>change</b>
<dd>Things that change.This includes files that are installed or updated in some way.
<dt><b>info</b>
<dd>General information.
<dt><b>notice</b>
<dd>General info about things that change.This includes things like making directories which are needed in orderto install a specific target, but which are not explicitly specified inthe<i>distfile.</i>
<dt><b>nerror</b>
<dd>Normal errors that are not fatal.
<dt><b>ferror</b>
<dd>Fatal errors.
<dt><b>warning</b>
<dd>Warnings about errors which are not as serious as<b>nerror</b>type messages.
<dt><b>debug</b>
<dd>Debugging information.
<dt><b>all</b>
<dd>All but debug messages.</dl>
</dl>
<p>Here is a sample command line option:
<pre>
<dl>
<dt>
<dd>-l stdout=all:syslog=change,notice:file=/tmp/rdist.log=all</dl>
</pre>
<p>This entry will set local message logging to have all but debugmessages sent to standard output, change and notice messages willbe sent to <i><a HREF="http://linux-man-pages.coding-school.com/3+syslog">syslog</a>(3),</i>and all messages will be written to the file<b>/tmp/rdist.log.</b><a NAME="lbAG">&nbsp;</a><br />
<h2>DISTFILES</h2>
<p>The<i>distfile</i>contains a sequence of entries that specify the filesto be copied, the destination hosts, and what operations to performto do the updating. Each entry has one of the following formats.
<pre>
<dl>
<dt>
<dd>&lt;variable name&gt; `=' &lt;name list&gt;[ label: ] &lt;source list&gt; `-&gt;' &lt;destination list&gt; &lt;command list&gt;[ label: ] &lt;source list&gt; `::' &lt;time_stamp file&gt; &lt;command list&gt;</dl>
</pre>
<p>The first format is used for defining variables.The second format is used for distributing files to other hosts.The third format is used for making lists of files that have been changedsince some given date.The <i>source list</i> specifies alist of files and/or directories on the local host which are to be usedas the master copy for distribution.The <i>destination list</i> is the list of hosts to which these files are to becopied.  Each file in the source list is added to a list of changesif the file is out of date on the host which is being updated (second format) orthe file is newer than the time stamp file (third format).
<p>Labels are optional. They are used to identify a command for partial updates.
<p>Newlines, tabs, and blanks are only used as separators and areotherwise ignored. Comments begin with `#&#8217; and end with a newline.
<p>Variables to be expanded begin with `$&#8217; followed by one character ora name enclosed in curly braces (see the examples at the end).
<p>The source and destination lists have the following format:
<pre>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;name&gt;or&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`(' &lt;zero or more names separated by white-space&gt; `)'</pre>
<p>These simple lists can be modified by using one level of set addition,subtraction, or intersection like this:
<pre>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;list '-' listor&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;list '+' listor&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;list '&amp;' list</pre>
<p>If additional modifications are needed (e.g., &#8220;all servers and clientmachines except for the OSF/1 machines&#8221;) then the list will haveto be explicitly constructed in steps using &quot;temporary&quot; variables.
<p>The shell meta-characters `[', `]&#8216;, `{&#8216;, `}&#8217;, `*&#8217;, and `&#8217;are recognized and expanded (on the local host only) in the same way as<i><a HREF="http://linux-man-pages.coding-school.com/1+csh">csh</a></i>(1).They can be escaped with a backslash.The `~&#8217; character is also expanded in the same way as<i>csh</i>but is expanded separately on the local and destination hosts.When the<b>-o</b><i>whole</i>option is used with a file name that begins with `~&#8217;, everything except thehome directory is appended to the destination name.File names which do not begin with `/&#8217; or `~&#8217; use the destination user&#8217;shome directory as the root directory for the rest of the file name.
<p>The command list consists of zero or more commands of the followingformat.
<pre>
<dl>
<dt>
<dd>`install'     &lt;options&gt;    opt_dest_name `;'`notify'      &lt;name list&gt;  `;'`except'      &lt;name list&gt;  `;'`except_pat'  &lt;pattern list&gt;`;'`special'     &lt;name list&gt;  string `;'`cmdspecial'  &lt;name list&gt;  string `;'</dl>
</pre>
<p>The<i>install</i>command is used to copy out of date files and/or directories.Each source file is copied to each host in the destination list.Directories are recursively copied in the same way.<i>Opt_dest_name</i>is an optional parameter to rename files.If no<i>install</i>command appears in the command list orthe destination name is not specified,the source file name is used.Directories in the path name will be created if theydo not exist on the remote host.The<b>-o </b><i>distopts</i>optionas specified above under<b>OPTIONS,</b>has the same semantics ason the command line except they only apply to the filesin the source list.The login name used on the destination host is the same as the local hostunless the destination name is of the format &#8220;<a HREF="mailto:login@host">login@host</a>&quot;.
<p>The<i>notify</i>command is used to mail the list of files updated (and any errorsthat may have occurred) to the listed names.If no `@&#8217; appears in the name, the destination host is appended tothe name(e.g., <a HREF="mailto:name1@host">name1@host</a>, <a HREF="mailto:name2@host">name2@host</a>, &#8230;).
<p>The<i>except</i>command is used to update all of the files in the source list<b>except</b>for the files listed in <i>name list</i>.This is usually used to copy everything in a directory except certain files.
<p>The<i>except_pat</i>command is like the<i>except</i>command except that <i>pattern list</i> is a list of regular expressions(see<i><a HREF="http://linux-man-pages.coding-school.com/1+ed">ed</a></i>(1)for details).If one of the patterns matches some string within a file name, that file willbe ignored.Note that since `&#8217; is a quote character, it must be doubled to becomepart of the regular expression.  Variables are expanded in <i>pattern list</i>but not shell file pattern matching characters.  To include a `$&#8217;, itmust be escaped with `&#8217;.
<p>The<i>special</i>command is used to specify<i><a HREF="http://linux-man-pages.coding-school.com/1+sh">sh</a></i>(1)commands that are to be executed on theremote host after the file in <i>name list</i> is updated or installed.If the <i>name list</i> is omitted then the shell commands will be executedfor every file updated or installed.  <i>String</i>starts and ends with `&quot;&#8217; and can cross multiple lines in<i>distfile.</i>Multiple commands to the shell should be separated by `;&#8217;.Commands are executed in the user&#8217;s home directory on the hostbeing updated.The<i>special</i>command can be used to rebuild private databases, etc.after a program has been updated.The following environment variables are set for each <i>special</i>command:
<dl>
<dt><b>FILE</b>
<dd>The full pathname of the local file that was just updated.
<dt><b>REMFILE</b>
<dd>The full pathname of the remote file that was just updated.
<dt><b>BASEFILE</b>
<dd>The basename of the remote file that was just updated.</dl>
<p>The<i>cmdspecial</i>command is similar to the<i>special</i>command, except it is executed only when the entire command is completedinstead of after each file is updated.The list of files is placed in the environment variable <b>$FILES.</b>Each file name in<b>$FILES</b>is separated by a `:&#8217; (colon).
<p>If a hostname ends in a &#8220;+&#8221; (plus sign), then the plusis stripped off and NFS checks are disabled.This is equivalent to disabling the<b>-o</b><i>chknfs</i>option just for this one host.
<p>The following is a small example.
<pre>
<dl>
<dt>
<dd>HOSTS = ( matisse <a HREF="mailto:root@arpa">root@arpa</a>)FILES = ( /bin /lib /usr/bin /usr/games              /usr/include/{*.h,{stand,sys,vax*,pascal,machine}/*.h}              /usr/lib /usr/man/man /usr/ucb /usr/local/rdist )EXLIB = ( Mail.rc aliases aliases.dir aliases.pag crontab dshrc              sendmail.cf sendmail.fc sendmail.hf sendmail.st uucp vfont )${FILES} -&gt; ${HOSTS}              install -oremove,chknfs ;              except /usr/lib/${EXLIB} ;              except /usr/games/lib ;              special /usr/lib/sendmail &quot;/usr/lib/sendmail -bz&quot; ;srcs:/usr/src/bin -&gt; arpa              except_pat ( .o$ /SCCS$ ) ;IMAGEN = (ips dviimp catdvi)imagen:/usr/local/${IMAGEN} -&gt; arpa              install /usr/local/lib ;              notify ralph ;${FILES} :: stamp.cory              notify <a HREF="mailto:root@cory">root@cory</a> ;</dl>
</pre>
<p><a NAME="lbAH">&nbsp;</a><br />
<h2>ENVIRONMENT</h2>
<dl>
<dt>TMPDIR
<dd>Name of temporary directory to use.  Default is <b>/tmp.</b></dl>
<p><a NAME="lbAI">&nbsp;</a><br />
<h2>FILES</h2>
<pre>distfile       - input command file$TMPDIR/rdist* - temporary file for update lists</pre>
<p><a NAME="lbAJ">&nbsp;</a><br />
<h2>SEE ALSO</h2>
<p><b><a HREF="http://linux-man-pages.coding-school.com/1+sh">sh</a>(1),</b><b><a HREF="http://linux-man-pages.coding-school.com/1+csh">csh</a>(1),</b><b><a HREF="http://linux-man-pages.coding-school.com/2+stat">stat</a>(2),</b><b><a HREF="http://linux-man-pages.coding-school.com/1c+rsh">rsh</a>(1c),</b><b><a HREF="http://linux-man-pages.coding-school.com/3+rcmd">rcmd</a>(3)</b><a NAME="lbAK">&nbsp;</a><br />
<h2>DIAGNOSTICS</h2>
<p><a NAME="lbAL">&nbsp;</a><br />
<h2>NOTES</h2>
<p>If the basename of a file  (the last component in the pathname)is &quot;.&quot;, then <b>rdist </b>assumes the remote (destination) name is a directory.i.e.<b>/tmp/.</b>means that<b>/tmp</b>should be a directory on the remote host.
<p>The following options are still recognized for backwards compatibility:
<dl>
<dt>
<dd>-v -N -O -q -b -r -R -s -w -y -h -i -x</dl>
<p><a NAME="lbAM">&nbsp;</a><br />
<h2>BUGS</h2>
<p>Source files must reside on the local host where rdist is executed.
<p>Variable expansion only works for name lists; there should be a general macrofacility.
<p><i>Rdist</i>aborts on files which have a negative mtime (before Jan 1, 1970).
<p>If a hardlinked file is listed more than once in the same target,then <i>rdist </i>will report missing links.Only one instance of a link should be listed in each target.<br />
<hr /><a NAME="index">&nbsp;</a><br />
<h2>Index</h2>
<dl>
<dt><a HREF="#lbAB">NAME</a>
<dd>
<dt><a HREF="#lbAC">SYNOPSIS</a>
<dd>
<dt><a HREF="#lbAD">DESCRIPTION</a>
<dd>
<dt><a HREF="#lbAE">OPTIONS</a>
<dd>
<dt><a HREF="#lbAF">MESSAGE LOGGING</a>
<dd>
<dt><a HREF="#lbAG">DISTFILES</a>
<dd>
<dt><a HREF="#lbAH">ENVIRONMENT</a>
<dd>
<dt><a HREF="#lbAI">FILES</a>
<dd>
<dt><a HREF="#lbAJ">SEE ALSO</a>
<dd>
<dt><a HREF="#lbAK">DIAGNOSTICS</a>
<dd>
<dt><a HREF="#lbAL">NOTES</a>
<dd>
<dt><a HREF="#lbAM">BUGS</a>
<dd></dl>
<hr />
<blockquote><p>desc: rdist &#8211; remote file distribution client program </p>
<p>keywords: linux, manual, pages, rdist </p>
</blockquote>
<p>[tags]linux, manual, pages, rdist[/tags]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxmanpages.wordpress.com/3054/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxmanpages.wordpress.com/3054/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxmanpages.wordpress.com/3054/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxmanpages.wordpress.com/3054/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxmanpages.wordpress.com/3054/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxmanpages.wordpress.com/3054/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxmanpages.wordpress.com/3054/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxmanpages.wordpress.com/3054/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxmanpages.wordpress.com&amp;blog=24948366&amp;post=3054&amp;subd=linuxmanpages&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxmanpages.wordpress.com/2011/07/11/1rdist-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e882e4a6c407d6f4952a936128a11d66?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kalamundawebdesign</media:title>
		</media:content>
	</item>
	</channel>
</rss>
