mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 11:02:08 +02:00

`expand` doesn't accept the equals sign '=' as a separator between the short option `-t` and its arguments. Signed-off-by: David Tadokoro <davidbtadokoro@usp.br>
24 lines
556 B
Markdown
24 lines
556 B
Markdown
# expand
|
|
|
|
> Converti caratteri tab in spazi.
|
|
> Maggiori informazioni: <https://www.gnu.org/software/coreutils/expand>.
|
|
|
|
- Converti tab in un file in spazi, scrivendo su standard output:
|
|
|
|
`expand {{file}}`
|
|
|
|
- Converti i tab in spazi, leggendo da standard input:
|
|
|
|
`expand`
|
|
|
|
- Non convertire i tab dopo caratteri di spaziatura:
|
|
|
|
`expand -i {{file}}`
|
|
|
|
- Sostituisci i tab con un determinato numero di spazi, non 8 (default):
|
|
|
|
`expand -t {{numero_spazi}} {{file}}`
|
|
|
|
- Utilizza una lista separata da virgole di posizioni esplicite di tab:
|
|
|
|
`expand -t {{1,4,6}}`
|