Forrest logo
back to context overview

unexpand

List of commands for unexpand:

  • unexpand:tldr:25a96 unexpand: Convert only leading sequences of blanks (overrides -a).
    $ unexpand --first-only ${filename}
    try on your machine
    explain this command
  • unexpand:tldr:2fbdd unexpand: Convert blanks to tabs, reading from standard output.
    $ unexpand
    try on your machine
    explain this command
  • unexpand:tldr:59ded unexpand: Have tabs a certain number of characters apart, not 8 (enables -a).
    $ unexpand -t ${number} ${filename}
    try on your machine
    explain this command
  • unexpand:tldr:a9489 unexpand: Convert blanks in each file to tabs, writing to standard output.
    $ unexpand ${filename}
    try on your machine
    explain this command
  • unexpand:tldr:c169f unexpand: Convert all blanks, instead of just initial blanks.
    $ unexpand -a ${filename}
    try on your machine
    explain this command
back to context overview