<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="sv">
	<id>https://wiki.linux.se/index.php?action=history&amp;feed=atom&amp;title=comm%281%29</id>
	<title>comm(1) - Versionshistorik</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.linux.se/index.php?action=history&amp;feed=atom&amp;title=comm%281%29"/>
	<link rel="alternate" type="text/html" href="https://wiki.linux.se/index.php?title=comm(1)&amp;action=history"/>
	<updated>2026-05-13T06:41:48Z</updated>
	<subtitle>Versionshistorik för denna sida på wikin</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://wiki.linux.se/index.php?title=comm(1)&amp;diff=7017&amp;oldid=prev</id>
		<title>Admin: Skapade sidan med &#039;== comm(1) - Linux manual page ==  === NAME === &#039;&#039;&#039;comm&#039;&#039;&#039; - compare two sorted files line by line  === SYNOPSIS === &lt;code&gt;comm&lt;/code&gt; [&lt;i&gt;OPTION&lt;/i&gt;]... &lt;i&gt;FILE1 FILE2&lt;/i&gt;  === DESCRIPTION === Compare sorted files FILE1 and FILE2 line by line.  When FILE1 or FILE2 (not both) is &#039;-&#039;, read standard input.  With no options, produce three-column output: * Column one contains lines unique to FILE1 * Column two contains lines unique to FILE2 * Column three contains lines comm...&#039;</title>
		<link rel="alternate" type="text/html" href="https://wiki.linux.se/index.php?title=comm(1)&amp;diff=7017&amp;oldid=prev"/>
		<updated>2025-03-02T06:59:34Z</updated>

		<summary type="html">&lt;p&gt;Skapade sidan med &amp;#039;== comm(1) - Linux manual page ==  === NAME === &amp;#039;&amp;#039;&amp;#039;comm&amp;#039;&amp;#039;&amp;#039; - compare two sorted files line by line  === SYNOPSIS === &amp;lt;code&amp;gt;comm&amp;lt;/code&amp;gt; [&amp;lt;i&amp;gt;OPTION&amp;lt;/i&amp;gt;]... &amp;lt;i&amp;gt;FILE1 FILE2&amp;lt;/i&amp;gt;  === DESCRIPTION === Compare sorted files FILE1 and FILE2 line by line.  When FILE1 or FILE2 (not both) is &amp;#039;-&amp;#039;, read standard input.  With no options, produce three-column output: * Column one contains lines unique to FILE1 * Column two contains lines unique to FILE2 * Column three contains lines comm...&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Ny sida&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== comm(1) - Linux manual page ==&lt;br /&gt;
&lt;br /&gt;
=== NAME ===&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;comm&amp;#039;&amp;#039;&amp;#039; - compare two sorted files line by line&lt;br /&gt;
&lt;br /&gt;
=== SYNOPSIS ===&lt;br /&gt;
&amp;lt;code&amp;gt;comm&amp;lt;/code&amp;gt; [&amp;lt;i&amp;gt;OPTION&amp;lt;/i&amp;gt;]... &amp;lt;i&amp;gt;FILE1 FILE2&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== DESCRIPTION ===&lt;br /&gt;
Compare sorted files FILE1 and FILE2 line by line.&lt;br /&gt;
&lt;br /&gt;
When FILE1 or FILE2 (not both) is &amp;#039;-&amp;#039;, read standard input.&lt;br /&gt;
&lt;br /&gt;
With no options, produce three-column output:&lt;br /&gt;
* Column one contains lines unique to FILE1&lt;br /&gt;
* Column two contains lines unique to FILE2&lt;br /&gt;
* Column three contains lines common to both files&lt;br /&gt;
&lt;br /&gt;
==== Options ====&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;-1&amp;#039;&amp;#039;&amp;#039;    Suppress column 1 (lines unique to FILE1)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;-2&amp;#039;&amp;#039;&amp;#039;    Suppress column 2 (lines unique to FILE2)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;-3&amp;#039;&amp;#039;&amp;#039;    Suppress column 3 (lines that appear in both files)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;--check-order&amp;#039;&amp;#039;&amp;#039;  Check that the input is correctly sorted, even if all input lines are pairable&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;--nocheck-order&amp;#039;&amp;#039;&amp;#039;  Do not check that the input is correctly sorted&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;--output-delimiter&amp;#039;&amp;#039;&amp;#039;=&amp;lt;i&amp;gt;STR&amp;lt;/i&amp;gt;  Separate columns with STR&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;--total&amp;#039;&amp;#039;&amp;#039;  Output a summary&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;-z&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;&amp;#039;--zero-terminated&amp;#039;&amp;#039;&amp;#039;  Line delimiter is NUL, not newline&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;--help&amp;#039;&amp;#039;&amp;#039;  Display this help and exit&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;--version&amp;#039;&amp;#039;&amp;#039;  Output version information and exit&lt;br /&gt;
&lt;br /&gt;
Comparisons honor the rules specified by &amp;#039;LC_COLLATE&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
=== EXAMPLES ===&lt;br /&gt;
&amp;lt;code&amp;gt;comm -12 file1 file2&amp;lt;/code&amp;gt;&lt;br /&gt;
:Print only lines present in both file1 and file2.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;comm -3 file1 file2&amp;lt;/code&amp;gt;&lt;br /&gt;
:Print lines in file1 not in file2, and vice versa.&lt;br /&gt;
&lt;br /&gt;
=== AUTHOR ===&lt;br /&gt;
Written by Richard M. Stallman and David MacKenzie.&lt;br /&gt;
&lt;br /&gt;
=== REPORTING BUGS ===&lt;br /&gt;
GNU coreutils online help:&lt;br /&gt;
[https://www.gnu.org/software/coreutils/ https://www.gnu.org/software/coreutils/]&lt;br /&gt;
&lt;br /&gt;
Report any translation bugs to:&lt;br /&gt;
[https://translationproject.org/team/ https://translationproject.org/team/]&lt;br /&gt;
&lt;br /&gt;
=== COPYRIGHT ===&lt;br /&gt;
Copyright © 2025 Free Software Foundation, Inc.&lt;br /&gt;
License GPLv3+: GNU GPL version 3 or later [https://gnu.org/licenses/gpl.html https://gnu.org/licenses/gpl.html].&lt;br /&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;
=== SEE ALSO ===&lt;br /&gt;
* [[join(1)]]&lt;br /&gt;
* [[uniq(1)]]&lt;br /&gt;
&lt;br /&gt;
Full documentation:&lt;br /&gt;
[https://www.gnu.org/software/coreutils/comm https://www.gnu.org/software/coreutils/comm]&lt;br /&gt;
&lt;br /&gt;
or available locally via:&lt;br /&gt;
&amp;lt;code&amp;gt;info &amp;#039;(coreutils) comm invocation&amp;#039;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== COLOPHON ===&lt;br /&gt;
This page is part of the &amp;#039;&amp;#039;&amp;#039;coreutils&amp;#039;&amp;#039;&amp;#039; (basic file, shell, and text manipulation utilities) project.&lt;br /&gt;
Information about the project can be found at:&lt;br /&gt;
[http://www.gnu.org/software/coreutils/ http://www.gnu.org/software/coreutils/]&lt;br /&gt;
&lt;br /&gt;
If you have a bug report for this manual page, see:&lt;br /&gt;
[http://www.gnu.org/software/coreutils/ http://www.gnu.org/software/coreutils/]&lt;br /&gt;
&lt;br /&gt;
This page was obtained from the tarball &amp;#039;&amp;#039;&amp;#039;coreutils-9.6.tar.xz&amp;#039;&amp;#039;&amp;#039; fetched from:&lt;br /&gt;
[http://ftp.gnu.org/gnu/coreutils/ http://ftp.gnu.org/gnu/coreutils/]&lt;br /&gt;
&lt;br /&gt;
on 2025-02-02. If you discover any rendering problems in this HTML version of the page, or you believe there is a better or more up-to-date source for the page, or you have corrections or improvements to the information in this COLOPHON (which is &amp;#039;&amp;#039;&amp;#039;not&amp;#039;&amp;#039;&amp;#039; part of the original manual page), send an email to: &amp;#039;&amp;#039;&amp;#039;man-pages@man7.org&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;GNU coreutils 9.6&amp;lt;/code&amp;gt;  January 2025  &amp;#039;&amp;#039;&amp;#039;COMM(1)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
= Sidslut =&lt;br /&gt;
&lt;br /&gt;
Orginalhemsidan på Engelska :https://man7.org/linux/man-pages/man1/comm.1.html&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
Det här är en maskinöversättning av Linux man sidor till svenska. Om du hittar fel är vi tacksamma om du rapporterar dem via formuläret som finns på &lt;br /&gt;
https://www.linux.se/kontaka-linux-se/&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;Tack till [https://datorhjalp.se/web/ Datorhjälp] som har  sponsrat [https://www.linux.se Linux.se] med webbhotell.&lt;br /&gt;
&lt;br /&gt;
[[Kategori:Linuxmanual grupp 1]]&lt;br /&gt;
[[Kategori:Linuxmanual]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>