← All commands
Topic hub Text Processing
Windows Linux Text Processing Sort/Compare

Windows PowerShell Compare-Object -IncludeEqual equivalent in Linux

Compares sorted files and can show common lines.

Windows PowerShell Compare-Object -IncludeEqual
Linux equivalents
Debian/Ubuntu same command
comm file1 file2
Fedora same command
comm file1 file2
Arch same command
comm file1 file2

Overview

What this command does

Compares sorted files and can show common lines.

Migration tip: Check the distro-specific rows before copying; package names and service names can differ even when the tool name is similar.

Practical tasks

Common use cases

Compare sorted files

Compares sorted files and can show common lines.

comm file1 file2

Compare sorted files

comm --help

Show command help when supported

man comm

Open the manual page when installed

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

comm file1 file2

Walkthrough

Examples with explanations

# Windows equivalent: PowerShell Compare-Object -IncludeEqual
comm file1 file2

Reference

Common options and variations

Command or optionUse
comm file1 file2Compare sorted files
comm --helpShow command help when supported
man commOpen the manual page when installed

Distro differences

Debian/Ubuntu vs Fedora vs Arch

The equivalent is shown for Debian/Ubuntu, Fedora and Arch. Some rows use a different package manager or helper tool where Linux distributions commonly diverge.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command comm file1 file2 Same command on this distribution.
Fedora same command comm file1 file2 Same command on this distribution.
Arch same command comm file1 file2 Same command on this distribution.

Keep learning

Related Text Processing commands