1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:42:07 +02:00
tldr/pages/linux/expand.md
2016-06-21 18:38:36 +01:00

420 B

expand

Convert tabs to spaces.

  • Convert tabs in each file to spaces, writing to standard output:

expand {{file}}

  • Convert tabs to spaces, reading from standard input:

expand

  • Do not convert tabs after non blanks:

expand -i {{file}}

  • Have tabs a certain number of characters apart, not 8:

expand -t={{number}} {{file}}

  • Use comma separated list of explicit tab positions:

expand -t={{list}}