tldr/pages/common/expand.md

25 lines
502 B
Markdown
Raw Normal View History

2016-06-21 18:38:36 +01:00
# expand
> Convert tabs to spaces.
> More information: <https://www.gnu.org/software/coreutils/expand>.
2016-06-21 18:38:36 +01:00
- Convert tabs in each file to spaces, writing to `stdout`:
2016-06-21 18:38:36 +01:00
2022-12-04 09:12:49 +00:00
`expand {{path/to/file}}`
2016-06-21 18:38:36 +01:00
- Convert tabs to spaces, reading from `stdin`:
2016-06-21 18:38:36 +01:00
`expand`
- Do not convert tabs after non blanks:
2022-12-04 09:12:49 +00:00
`expand -i {{path/to/file}}`
2016-06-21 18:38:36 +01:00
- Have tabs a certain number of characters apart, not 8:
2022-12-04 09:12:49 +00:00
`expand -t={{number}} {{path/to/file}}`
2016-06-21 18:38:36 +01:00
- Use a comma separated list of explicit tab positions:
2016-06-21 18:38:36 +01:00
`expand -t={{1,4,6}}`