<?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%2Ffile</id>
	<title>Comandos de la terminal/file - 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%2Ffile"/>
	<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/file&amp;action=history"/>
	<updated>2026-04-28T14:32:41Z</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/file&amp;diff=5173&amp;oldid=prev</id>
		<title>Rrc en 18:34 23 ene 2014</title>
		<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/file&amp;diff=5173&amp;oldid=prev"/>
		<updated>2014-01-23T18:34:29Z</updated>

		<summary type="html">&lt;p&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;
* [[:#file | file]]&lt;br /&gt;
&lt;br /&gt;
== file ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file --version&lt;br /&gt;
file-5.12&lt;br /&gt;
magic file from /usr/share/misc/magic&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file --help&lt;br /&gt;
Usage: file [OPTION...] [FILE...]&lt;br /&gt;
Determine type of FILEs.&lt;br /&gt;
&lt;br /&gt;
      --help                 display this help and exit&lt;br /&gt;
  -v, --version              output version information and exit&lt;br /&gt;
  -m, --magic-file LIST      use LIST as a colon-separated list of magic&lt;br /&gt;
                               number files&lt;br /&gt;
  -z, --uncompress           try to look inside compressed files&lt;br /&gt;
  -b, --brief                do not prepend filenames to output lines&lt;br /&gt;
  -c, --checking-printout    print the parsed form of the magic file, use in&lt;br /&gt;
                               conjunction with -m to debug a new magic file&lt;br /&gt;
                               before installing it&lt;br /&gt;
  -e, --exclude TEST         exclude TEST from the list of test to be&lt;br /&gt;
                               performed for file. Valid tests are:&lt;br /&gt;
                               apptype, ascii, cdf, compress, elf, encoding,&lt;br /&gt;
                               soft, tar, text, tokens&lt;br /&gt;
  -f, --files-from FILE      read the filenames to be examined from FILE&lt;br /&gt;
  -F, --separator STRING     use string as separator instead of `:&amp;#039;&lt;br /&gt;
  -i, --mime                 output MIME type strings (--mime-type and&lt;br /&gt;
                               --mime-encoding)&lt;br /&gt;
      --apple                output the Apple CREATOR/TYPE&lt;br /&gt;
      --mime-type            output the MIME type&lt;br /&gt;
      --mime-encoding        output the MIME encoding&lt;br /&gt;
  -k, --keep-going           don&amp;#039;t stop at the first match&lt;br /&gt;
  -l, --list                 list magic strength&lt;br /&gt;
  -L, --dereference          follow symlinks (default)&lt;br /&gt;
  -h, --no-dereference       don&amp;#039;t follow symlinks&lt;br /&gt;
  -n, --no-buffer            do not buffer output&lt;br /&gt;
  -N, --no-pad               do not pad output&lt;br /&gt;
  -0, --print0               terminate filenames with ASCII NUL&lt;br /&gt;
  -p, --preserve-date        preserve access times on files&lt;br /&gt;
  -r, --raw                  don&amp;#039;t translate unprintable chars to \ooo&lt;br /&gt;
  -s, --special-files        treat special (block/char devices) files as&lt;br /&gt;
                             ordinary ones&lt;br /&gt;
  -C, --compile              compile file specified by -m&lt;br /&gt;
  -d, --debug                print debugging messages&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file /usr/bin/bash&lt;br /&gt;
/usr/bin/bash: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.33, BuildID[sha1]=fe0cb92354ccf5fc2af3caca90c8fa11d4065f14, stripped&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file -b /usr/bin/bash&lt;br /&gt;
ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.33, BuildID[sha1]=fe0cb92354ccf5fc2af3caca90c8fa11d4065f14, stripped&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file /dev/ttyS0 &lt;br /&gt;
/dev/ttyS0: character special&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file /dev/sda1&lt;br /&gt;
/dev/sda1: block special&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file /etc/rc.d/rc3.d&lt;br /&gt;
/etc/rc.d/rc3.d: directory&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file /etc/rc3.d&lt;br /&gt;
/etc/rc3.d: symbolic link to `rc.d/rc3.d&amp;#039;&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file -L /etc/rc3.d&lt;br /&gt;
/etc/rc3.d: directory&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file ComandosDeLaTerminal/ScriptFile &lt;br /&gt;
ComandosDeLaTerminal/ScriptFile: ASCII text, with CRLF, LF line terminators, with escape sequences, with overstriking&lt;br /&gt;
&lt;br /&gt;
file screencastRAW20131207.webm &lt;br /&gt;
screencastRAW20131207.webm: WebM&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ file FacturaLibreCFDI_1.7.1.oxt&lt;br /&gt;
FacturaLibreCFDI_1.7.1.oxt: Zip archive data, at least v2.0 to extract&lt;br /&gt;
&lt;br /&gt;
[rrc@pridd ~]$ su -c &amp;quot;file /boot/initrd-3.10.24-desktop-2.mga3.img&amp;quot;&lt;br /&gt;
Password: &lt;br /&gt;
/boot/initrd-3.10.24-desktop-2.mga3.img: gzip compressed data, from Unix, last modified: Thu Dec 19 08:33:38 2013, max compression&lt;br /&gt;
&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>