<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fhead</id>
	<title>Comandos de la terminal/head - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fhead"/>
	<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/head&amp;action=history"/>
	<updated>2026-04-12T01:42:22Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/head&amp;diff=6461&amp;oldid=prev</id>
		<title>Rrc: /* head */</title>
		<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/head&amp;diff=6461&amp;oldid=prev"/>
		<updated>2014-10-10T16:32:29Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;head&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#head | head]]&lt;br /&gt;
&lt;br /&gt;
== head ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
head [OPTION]... [FILE]...&lt;br /&gt;
&lt;br /&gt;
       -c, --bytes=[-]K&lt;br /&gt;
              print the first K bytes of each  file;  with  the  leading  &amp;#039;-&amp;#039;,&lt;br /&gt;
              print all but the last K bytes of each file&lt;br /&gt;
&lt;br /&gt;
       -n, --lines=[-]K&lt;br /&gt;
              print  the first K lines instead of the first 10; with the lead‐&lt;br /&gt;
              ing &amp;#039;-&amp;#039;, print all but the last K lines of each file&lt;br /&gt;
&lt;br /&gt;
       -q, --quiet, --silent&lt;br /&gt;
              never print headers giving file names&lt;br /&gt;
&lt;br /&gt;
       -v, --verbose&lt;br /&gt;
              always print headers giving file names&lt;br /&gt;
&lt;br /&gt;
       --help display this help and exit&lt;br /&gt;
&lt;br /&gt;
       --version&lt;br /&gt;
              output version information and exit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head /var/www/almastock.asambiental.mx/index.php &lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockFunctions.inc.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockConfig.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;/etc/Almastock.inc.php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
  if( $_SERVER{&amp;#039;SERVER_PORT&amp;#039;} != 443 )&lt;br /&gt;
  {&lt;br /&gt;
    header( &amp;quot;Location: &amp;quot; . SSLURL );&lt;br /&gt;
    exit();&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head -c 100 /var/www/almastock.asambiental.mx/index.php &lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockFunctions.inc.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockCo[rrc@pridd ~]$ &lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head -c -11500 /var/www/almastock.asambiental.mx/index.php &lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockFunctions.inc.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockConfig.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;/etc/Almastock.inc.php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
  if( $_SERVER{&amp;#039;SERVER_PORT&amp;#039;} != 443 )&lt;br /&gt;
  {&lt;br /&gt;
    header( &amp;quot;Location: &amp;quot; . SSLURL&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head -n 7 /var/www/almastock.asambiental.mx/index.php &lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockFunctions.inc.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockConfig.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;/etc/Almastock.inc.php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
  if( $_SERVER{&amp;#039;SERVER_PORT&amp;#039;} != 443 )&lt;br /&gt;
  {&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head -n -358 /var/www/almastock.asambiental.mx/index.php &lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockFunctions.inc.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockConfig.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;/etc/Almastock.inc.php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
  if( $_SERVER{&amp;#039;SERVER_PORT&amp;#039;} != 443 )&lt;br /&gt;
  {&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head -vn -358 /var/www/almastock.asambiental.mx/index.php &lt;br /&gt;
==&amp;gt; /var/www/almastock.asambiental.mx/index.php &amp;lt;==&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockFunctions.inc.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;includes/AlmastockConfig.php&amp;quot; );&lt;br /&gt;
  require_once( &amp;quot;/etc/Almastock.inc.php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
  if( $_SERVER{&amp;#039;SERVER_PORT&amp;#039;} != 443 )&lt;br /&gt;
  {&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ head --version&lt;br /&gt;
head (GNU coreutils) 8.20&lt;br /&gt;
Copyright (C) 2012 Free Software Foundation, Inc.&lt;br /&gt;
License GPLv3+: GNU GPL version 3 or later &amp;lt;http://gnu.org/licenses/gpl.html&amp;gt;.&lt;br /&gt;
This is free software: you are free to change and redistribute it.&lt;br /&gt;
There is NO WARRANTY, to the extent permitted by law.&lt;br /&gt;
&lt;br /&gt;
Written by David MacKenzie and Jim Meyering.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comandos de la terminal]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>