expand: fix short option -t argument separator (#12493)

`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>
This commit is contained in:
David de Barros Tadokoro 2024-03-11 16:16:25 -03:00 committed by GitHub
parent 92b0c3bde7
commit e2fbf4d5fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@
- Sostituisci i tab con un determinato numero di spazi, non 8 (default):
`expand -t={{numero_spazi}} {{file}}`
`expand -t {{numero_spazi}} {{file}}`
- Utilizza una lista separata da virgole di posizioni esplicite di tab:
`expand -t={{1,4,6}}`
`expand -t {{1,4,6}}`

View File

@ -17,8 +17,8 @@
- Have tabs a certain number of characters apart, not 8:
`expand -t={{number}} {{path/to/file}}`
`expand -t {{number}} {{path/to/file}}`
- Use a comma separated list of explicit tab positions:
`expand -t={{1,4,6}}`
`expand -t {{1,4,6}}`