Unexpand

unexpand
Operating systemUnix and Unix-like
PlatformCross-platform
TypeCommand

unexpand is a command in Unix and Unix-like operating systems. It is used to convert groups of space characters into tab characters.

For example:

$ echo "                 asdf sdf" | unexpand | od -c
0000000  \t  \t       a   s   d   f       s   d   f  \n
0000014
$ echo "                 asdf sdf" | od -c
0000000
0000020       a   s   d   f       s   d   f  \n
0000032

Here the echo command prints a string of text that includes multiple consecutive spaces, then the output is directed into the unexpand command. The resulting output is then displayed by the octal dump command od. At the second prompt, the same echo output is sent directly through the od command. As can be seen by comparing the two, the unexpand program converts sequences of eight spaces into single tabs (printed as '\t').

See also

References

External links

  • [1] The program's manpage
  • v
  • t
  • e
Unix command-line interface programs and shell builtins
File system
Processes
User environment
Text processing
Shell builtins
  • alias
  • cd
  • echo
  • test
  • unset
  • wait
Searching
Documentation
Software development
Miscellaneous
  • bc
  • cal
  • expr
  • lp
  • od
  • sleep
  • true and false
  • Categories
    • Standard Unix programs
    • Unix SUS2008 utilities
  • List
  • v
  • t
  • e
File system
Text utilities
Shell utilities