<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://gunkies.org/index.php?action=history&amp;feed=atom&amp;title=32v_1m_tar</id>
		<title>32v 1m tar - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://gunkies.org/index.php?action=history&amp;feed=atom&amp;title=32v_1m_tar"/>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=32v_1m_tar&amp;action=history"/>
		<updated>2026-05-18T21:47:32Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.30.1</generator>

	<entry>
		<id>https://gunkies.org/w/index.php?title=32v_1m_tar&amp;diff=7037&amp;oldid=prev</id>
		<title>Neozeed: New page: TAR(1)              UNIX Programmer's Manual               TAR(1)    == NAME ==      tar  -  tape archiver  == SYNOPSIS ==      tar [ key ] [ name ... ]  == DESCRIPTION ==      _T_a_r save...</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=32v_1m_tar&amp;diff=7037&amp;oldid=prev"/>
				<updated>2009-10-26T16:25:51Z</updated>
		
		<summary type="html">&lt;p&gt;New page: TAR(1)              UNIX Programmer&amp;#039;s Manual               TAR(1)    == NAME ==      tar  -  tape archiver  == SYNOPSIS ==      tar [ key ] [ name ... ]  == DESCRIPTION ==      _T_a_r save...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;TAR(1)              UNIX Programmer's Manual               TAR(1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NAME ==&lt;br /&gt;
     tar  -  tape archiver&lt;br /&gt;
&lt;br /&gt;
== SYNOPSIS ==&lt;br /&gt;
     tar [ key ] [ name ... ]&lt;br /&gt;
&lt;br /&gt;
== DESCRIPTION ==&lt;br /&gt;
     _T_a_r saves and restores files on magtape.  Its actions are&lt;br /&gt;
     controlled by the _k_e_y argument.  The _k_e_y is a string of&lt;br /&gt;
     characters containing at most one function letter and possi-&lt;br /&gt;
     bly one or more function modifiers.  Other arguments to the&lt;br /&gt;
     command are file or directory names specifying which files&lt;br /&gt;
     are to be dumped or restored.  In all cases, appearance of a&lt;br /&gt;
     directory name refers to the files and (recursively) sub-&lt;br /&gt;
     directories of that directory.&lt;br /&gt;
&lt;br /&gt;
     The function portion of the key is specified by one of the&lt;br /&gt;
     following letters:&lt;br /&gt;
&lt;br /&gt;
     r       The named files are written on the end of the tape.&lt;br /&gt;
             The c function implies this.&lt;br /&gt;
&lt;br /&gt;
     x       The named files are extracted from the tape.  If the&lt;br /&gt;
             named file matches a directory whose contents had&lt;br /&gt;
             been written onto the tape, this directory is&lt;br /&gt;
             (recursively) extracted.  The owner and mode are&lt;br /&gt;
             restored (if possible).  If no file argument is&lt;br /&gt;
             given, the entire content of the tape is extracted.&lt;br /&gt;
             Note that if multiple entries specifying the same&lt;br /&gt;
             file are on the tape, the last one overwrites all&lt;br /&gt;
             earlier.&lt;br /&gt;
&lt;br /&gt;
     t       The names of the specified files are listed each&lt;br /&gt;
             time they occur on the tape.  If no file argument is&lt;br /&gt;
             given, all of the names on the tape are listed.&lt;br /&gt;
&lt;br /&gt;
     u       The named files are added to the tape if either they&lt;br /&gt;
             are not already there or have been modified since&lt;br /&gt;
             last put on the tape.&lt;br /&gt;
&lt;br /&gt;
     c       Create a new tape; writing begins on the beginning&lt;br /&gt;
             of the tape instead of after the last file.  This&lt;br /&gt;
             command implies r.&lt;br /&gt;
&lt;br /&gt;
     The following characters may be used in addition to the&lt;br /&gt;
     letter which selects the function desired.&lt;br /&gt;
&lt;br /&gt;
     0,...,7   This modifier selects the drive on which the tape&lt;br /&gt;
               is mounted.  The default is 1.&lt;br /&gt;
&lt;br /&gt;
     v         Normally _t_a_r does its work silently.  The v (ver-&lt;br /&gt;
               bose) option causes it to type the name of each&lt;br /&gt;
               file it treats preceded by the function letter.&lt;br /&gt;
               With the t function, v gives more information&lt;br /&gt;
               about the tape entries than just the name.&lt;br /&gt;
&lt;br /&gt;
     w         causes _t_a_r to print the action to be taken fol-&lt;br /&gt;
               lowed by file name, then wait for user confirma-&lt;br /&gt;
               tion. If a word beginning with `y' is given, the&lt;br /&gt;
               action is performed. Any other input means don't&lt;br /&gt;
               do it.&lt;br /&gt;
&lt;br /&gt;
     f         causes _t_a_r to use the next argument as the name of&lt;br /&gt;
               the archive instead of /dev/mt?. If the name of&lt;br /&gt;
               the file is `-', tar writes to standard output or&lt;br /&gt;
               reads from standard input, whichever is appropri-&lt;br /&gt;
               ate. Thus, _t_a_r can be used as the head or tail of&lt;br /&gt;
               a filter chain _T_a_r can also be used to move&lt;br /&gt;
               hierarchies with the command&lt;br /&gt;
                 cd fromdir; tar cf - . | (cd todir; tar xf -)&lt;br /&gt;
&lt;br /&gt;
     b         causes _t_a_r to use the next argument as the block-&lt;br /&gt;
               ing factor for tape records. The default is 1, the&lt;br /&gt;
               maximum is 20. This option should only be used&lt;br /&gt;
               with raw magnetic tape archives (See f above).&lt;br /&gt;
&lt;br /&gt;
     l         tells _t_a_r to complain if it cannot resolve all of&lt;br /&gt;
               the links to the files dumped. If this is not&lt;br /&gt;
               specified, no error meesages are printed.&lt;br /&gt;
&lt;br /&gt;
== FILES ==&lt;br /&gt;
     /dev/mt?&lt;br /&gt;
     /tmp/tar*&lt;br /&gt;
&lt;br /&gt;
== DIAGNOSTICS ==&lt;br /&gt;
     Complaints about bad key characters and tape read/write&lt;br /&gt;
     errors.&lt;br /&gt;
     Complaints if enough memory is not available to hold the&lt;br /&gt;
     link tables.&lt;br /&gt;
&lt;br /&gt;
== BUGS ==&lt;br /&gt;
     There is no way to ask for the _n-th occurrence of a file.&lt;br /&gt;
     Tape errors are handled ungracefully.&lt;br /&gt;
     The u option can be slow.&lt;br /&gt;
     The b option should not be used with archives that are going&lt;br /&gt;
     to be updated. The current magtape driver cannot backspace&lt;br /&gt;
     raw magtape.  If the archive is on a disk file the b option&lt;br /&gt;
     should not be used at all, as updating an archive stored in&lt;br /&gt;
     this manner can destroy it.&lt;br /&gt;
     The current limit on file name length is 100 characters.&lt;br /&gt;
&lt;br /&gt;
[[Category:32v man section 1]]&lt;/div&gt;</summary>
		<author><name>Neozeed</name></author>	</entry>

	</feed>