<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>iTechLog &#187; tail</title>
	<atom:link href="http://itechlog.com/tag/tail/feed/" rel="self" type="application/rss+xml" />
	<link>http://itechlog.com</link>
	<description>Your source to IT solutions, interesting technology news and code snipets.</description>
	<lastBuildDate>Tue, 10 Jan 2012 17:06:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>TAIL</title>
		<link>http://itechlog.com/linux-man-pages/2009/01/01/tail-2/</link>
		<comments>http://itechlog.com/linux-man-pages/2009/01/01/tail-2/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 13:35:00 +0000</pubDate>
		<dc:creator>Alex Costa</dc:creator>
				<category><![CDATA[Linux Man Pages]]></category>
		<category><![CDATA[tail]]></category>

		<guid isPermaLink="false">http://itechlog.com/linux-man-pages/2009/01/01/tail-2/</guid>
		<description><![CDATA[<a href="http://itechlog.com/linux-man-pages/2009/01/01/tail-2/" title="TAIL"></a>TAIL(1) User Commands TAIL(1) NAME tail &#8211; output the last part of files SYNOPSIS tail [OPTION]&#8230; [FILE]&#8230; DESCRIPTION Print the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving &#8230;<p class="read-more"><a href="http://itechlog.com/linux-man-pages/2009/01/01/tail-2/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://itechlog.com/linux-man-pages/2009/01/01/tail-2/" title="TAIL"></a><p>TAIL(1)                          User Commands                         TAIL(1)</p>
<p>NAME<br />       tail &#8211; output the last part of files</p>
<p>SYNOPSIS<br />       tail [OPTION]&#8230; [FILE]&#8230;</p>
<p>DESCRIPTION<br />       Print  the  last  10  lines of each FILE to standard output.  With more<br />       than one FILE, precede each with a header giving the file  name.   With<br />       no FILE, or when FILE is -, read standard input.</p>
<p>       Mandatory  arguments  to  long  options are mandatory for short options<br />       too.</p>
<p>       &#8211;retry<br />              keep trying to open a file even if it is inaccessible when  tail<br />              starts  or if it becomes inaccessible later; useful when follow-<br />              ing by name, i.e., with &#8211;follow=name</p>
<p>       -c, &#8211;bytes=N<br />              output the last N bytes; alternatively, use +N to  output  bytes<br />              starting with the Nth of each file</p>
<p>       -f, &#8211;follow[={name|descriptor}]<br />              output appended data as the file grows; -f, &#8211;follow, and &#8211;fol-<br />              low=descriptor are equivalent</p>
<p>       -F     same as &#8211;follow=name &#8211;retry</p>
<p>       -n, &#8211;lines=N<br />              output the last N lines, instead of the last 10; or  use  +N  to<br />              output lines starting with the Nth</p>
<p>       &#8211;max-unchanged-stats=N<br />              with  &#8211;follow=name,  reopen  a  FILE which has not changed size<br />              after N (default 5) iterations to see if it has been unlinked or<br />              renamed (this is the usual case of rotated log files)</p>
<p>       &#8211;pid=PID<br />              with -f, terminate after process ID, PID dies</p>
<p>       -q, &#8211;quiet, &#8211;silent<br />              never output headers giving file names</p>
<p>       -s, &#8211;sleep-interval=S<br />              with -f, sleep for approximately S seconds (default 1.0) between<br />              iterations.</p>
<p>       -v, &#8211;verbose<br />              always output headers giving file names</p>
<p>       &#8211;help display this help and exit</p>
<p>       &#8211;version<br />              output version information and exit</p>
<p>       If the first character of N (the number of bytes or lines)  is  a  `+&#8217;,<br />       print  beginning  with the Nth item from the start of each file, other-<br />       wise, print the last N items in the file.  N may have a multiplier suf-<br />       fix:   b   512,  kB  1000,  K  1024,  MB  1000*1000,  M  1024*1024,  GB<br />       1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y.</p>
<p>       With &#8211;follow (-f), tail defaults to  following  the  file  descriptor,<br />       which  means that even if a tail&#8217;ed file is renamed, tail will continue<br />       to track its end.  This default behavior  is  not  desirable  when  you<br />       really want to track the actual name of the file, not the file descrip-<br />       tor (e.g., log rotation).  Use &#8211;follow=name in that case.  That causes<br />       tail  to track the named file by reopening it periodically to see if it<br />       has been removed and recreated by some other program.</p>
<p>AUTHOR<br />       Written by Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim  Mey-<br />       ering.</p>
<p>REPORTING BUGS<br />       Report bugs to &lt;<a target="_blank" onclick="top.Popup.composeWindow('pcompose.php?sendto=bug-coreutils@gnu.org'); return false;" href="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.</p>
<p>COPYRIGHT<br />       Copyright  Â©  2008  Free Software Foundation, Inc.  License GPLv3+: GNU<br />       GPL version 3 or later &lt;<a target="_blank" 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.<br />       There is NO WARRANTY, to the extent permitted by law.</p>
<p>SEE ALSO<br />       The  full documentation for tail is maintained as a Texinfo manual.  If<br />       the info and tail programs are properly installed  at  your  site,  the<br />       command</p>
<p>              info coreutils &#8216;tail invocation&#8217;</p>
<p>       should give you access to the complete manual.</p>
<p>GNU coreutils 6.12                 May 2008                            TAIL(1)</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=fef9904a-e598-4694-8040-0dbd8244b72a" /></div>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Linux+Man+Pages' rel='tag' target='_self'>Linux Man Pages</a>, <a class='technorati-link' href='http://technorati.com/tag/tail' rel='tag' target='_self'>tail</a></p>

<!-- end wp-tags-to-technorati -->
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/tail/" title="TAIL">TAIL</a></li><li>January 4, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/04/sort/" title="SORT">SORT</a></li><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/mkdirhier/" title="MKDIRHIER">MKDIRHIER</a></li><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/modinfo/" title="MODINFO">MODINFO</a></li><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/mkfs/" title="MKFS">MKFS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://itechlog.com/linux-man-pages/2009/01/01/tail-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TAIL</title>
		<link>http://itechlog.com/linux-man-pages/2009/01/01/tail/</link>
		<comments>http://itechlog.com/linux-man-pages/2009/01/01/tail/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 00:08:00 +0000</pubDate>
		<dc:creator>Alex Costa</dc:creator>
				<category><![CDATA[Linux Man Pages]]></category>
		<category><![CDATA[tail]]></category>

		<guid isPermaLink="false">http://itechlog.com/linux-man-pages/2009/01/01/tail/</guid>
		<description><![CDATA[<a href="http://itechlog.com/linux-man-pages/2009/01/01/tail/" title="TAIL"></a>TAIL(1) User Commands TAIL(1) NAME tail &#8211; output the last part of files SYNOPSIS tail [OPTION]&#8230; [FILE]&#8230; DESCRIPTION Print the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving &#8230;<p class="read-more"><a href="http://itechlog.com/linux-man-pages/2009/01/01/tail/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://itechlog.com/linux-man-pages/2009/01/01/tail/" title="TAIL"></a><p>TAIL(1)                          User Commands                         TAIL(1)</p>
<p>NAME<br />       tail &#8211; output the last part of files</p>
<p>SYNOPSIS<br />       tail [OPTION]&#8230; [FILE]&#8230;</p>
<p>DESCRIPTION<br />       Print  the  last  10  lines of each FILE to standard output.  With more<br />       than one FILE, precede each with a header giving the file  name.   With<br />       no FILE, or when FILE is -, read standard input.</p>
<p>       Mandatory  arguments  to  long  options are mandatory for short options<br />       too.</p>
<p>       &#8211;retry<br />              keep trying to open a file even if it is inaccessible when  tail<br />              starts  or if it becomes inaccessible later; useful when follow-<br />              ing by name, i.e., with &#8211;follow=name</p>
<p>       -c, &#8211;bytes=N<br />              output the last N bytes; alternatively, use +N to  output  bytes<br />              starting with the Nth of each file</p>
<p>       -f, &#8211;follow[={name|descriptor}]<br />              output appended data as the file grows; -f, &#8211;follow, and &#8211;fol-<br />              low=descriptor are equivalent</p>
<p>       -F     same as &#8211;follow=name &#8211;retry</p>
<p>       -n, &#8211;lines=N<br />              output the last N lines, instead of the last 10; or  use  +N  to<br />              output lines starting with the Nth</p>
<p>       &#8211;max-unchanged-stats=N<br />              with  &#8211;follow=name,  reopen  a  FILE which has not changed size<br />              after N (default 5) iterations to see if it has been unlinked or<br />              renamed (this is the usual case of rotated log files)</p>
<p>       &#8211;pid=PID<br />              with -f, terminate after process ID, PID dies</p>
<p>       -q, &#8211;quiet, &#8211;silent<br />              never output headers giving file names</p>
<p>       -s, &#8211;sleep-interval=S<br />              with -f, sleep for approximately S seconds (default 1.0) between<br />              iterations.</p>
<p>       -v, &#8211;verbose<br />              always output headers giving file names</p>
<p>       &#8211;help display this help and exit</p>
<p>       &#8211;version<br />              output version information and exit</p>
<p>       If the first character of N (the number of bytes or lines)  is  a  `+&#8217;,<br />       print  beginning  with the Nth item from the start of each file, other-<br />       wise, print the last N items in the file.  N may have a multiplier suf-<br />       fix:   b   512,  kB  1000,  K  1024,  MB  1000*1000,  M  1024*1024,  GB<br />       1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y.</p>
<p>       With &#8211;follow (-f), tail defaults to  following  the  file  descriptor,<br />       which  means that even if a tail&#8217;ed file is renamed, tail will continue<br />       to track its end.  This default behavior  is  not  desirable  when  you<br />       really want to track the actual name of the file, not the file descrip-<br />       tor (e.g., log rotation).  Use &#8211;follow=name in that case.  That causes<br />       tail  to track the named file by reopening it periodically to see if it<br />       has been removed and recreated by some other program.</p>
<p>AUTHOR<br />       Written by Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim  Mey-<br />       ering.</p>
<p>REPORTING BUGS<br />       Report bugs to &lt;<a target="_blank" onclick="top.Popup.composeWindow('pcompose.php?sendto=bug-coreutils@gnu.org'); return false;" href="mailto:bug-coreutils@gnu.org">bug-coreutils@gnu.org</a>&gt;.</p>
<p>COPYRIGHT<br />       Copyright  Â©  2008  Free Software Foundation, Inc.  License GPLv3+: GNU<br />       GPL version 3 or later &lt;<a target="_blank" 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.<br />       There is NO WARRANTY, to the extent permitted by law.</p>
<p>SEE ALSO<br />       The  full documentation for tail is maintained as a Texinfo manual.  If<br />       the info and tail programs are properly installed  at  your  site,  the<br />       command</p>
<p>              info coreutils &#8216;tail invocation&#8217;</p>
<p>       should give you access to the complete manual.</p>
<p>GNU coreutils 6.12                 May 2008                            TAIL(1)</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=b9cff836-46d3-4149-afb5-e8acacea8624" /></div>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Linux+Man+Pages' rel='tag' target='_self'>Linux Man Pages</a>, <a class='technorati-link' href='http://technorati.com/tag/tail' rel='tag' target='_self'>tail</a></p>

<!-- end wp-tags-to-technorati -->
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/tail-2/" title="TAIL">TAIL</a></li><li>January 4, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/04/sort/" title="SORT">SORT</a></li><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/mkdirhier/" title="MKDIRHIER">MKDIRHIER</a></li><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/modinfo/" title="MODINFO">MODINFO</a></li><li>January 1, 2009 -- <a href="http://itechlog.com/linux-man-pages/2009/01/01/mkfs/" title="MKFS">MKFS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://itechlog.com/linux-man-pages/2009/01/01/tail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

