coreutils commands: move pages to common/ folder (#2442)

This commit is contained in:
Felix Yan
2018-10-17 01:29:50 +08:00
committed by Starbeamrainbowlabs
parent 9ef7ec119a
commit 72b4f22ff9
36 changed files with 4 additions and 23 deletions

23
pages/common/expand.md Normal file
View File

@@ -0,0 +1,23 @@
# 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}}`