Forrest logo
back to context overview

comp

List of commands for comp:

  • comp:tldr:00548 comp: Compare files interactively.
    $ comp
    try on your machine
    explain this command
  • comp:tldr:025ed comp: Display differences in ASCII format.
    $ comp /a ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • comp:tldr:42c45 comp: Compare only the first 5 lines of each file.
    $ comp /n=${5} ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • comp:tldr:43c5e comp: Display line numbers for differences.
    $ comp /l ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • comp:tldr:45d29 comp: Compare two specified files.
    $ comp ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • comp:tldr:4ccd3 comp: Display differences in decimal format.
    $ comp /d ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • comp:tldr:cbc06 comp: Compare two sets of files.
    $ comp ${path\to\directory1}\* ${path\to\directory2}\*
    try on your machine
    explain this command
  • comp:tldr:d5fa8 comp: Compare files case-insensitively.
    $ comp /c ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
back to context overview