Forrest logo
back to context overview

fc

List of commands for fc:

  • fc:tldr:1c4ec fc: List recent commands from history.
    $ fc -l
    try on your machine
    explain this command
  • fc:tldr:29bd6 fc: List recent commands in reverse order.
    $ fc -l -r
    try on your machine
    explain this command
  • fc:tldr:39104 fc: Compare files as ASCII text.
    $ fc /l ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • fc:tldr:3ab1e fc: List commands in a given interval.
    $ fc '${416}' '${420}'
    try on your machine
    explain this command
  • fc:tldr:4c909 fc: Compare files as Unicode text.
    $ fc /u ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • fc:tldr:579b6 fc: Disable tab-to-space expansion.
    $ fc /t ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • fc:tldr:82729 fc: Compress whitespace (tabs and spaces) for comparisons.
    $ fc /w ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • fc:tldr:ca524 fc: Perform a case-insensitive comparison.
    $ fc /c ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • fc:tldr:d527a fc: Compare files as binary.
    $ fc /b ${path\to\file1} ${path\to\file2}
    try on your machine
    explain this command
  • fc:tldr:d76e0 fc: Specify an editor to open with.
    $ fc -e ${'emacs'}
    try on your machine
    explain this command
  • fc:tldr:e05fe fc: Open in the default system editor.
    $ fc
    try on your machine
    explain this command
back to context overview