shfmt: add page (#10113)

Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
Marlon Couto 2023-05-05 12:35:58 -03:00 committed by GitHub
parent a9816916c6
commit e95abcac23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/common/shfmt.md Normal file
View File

@ -0,0 +1,20 @@
# shfmt
> Shell parser, formatter and interpreter.
> More information: <https://pkg.go.dev/mvdan.cc/sh>.
- Print a formatted version of a shell script:
`shfmt {{path/to/file}}`
- List unformatted files:
`shfmt --list {{path/to/directory}}`
- Write the result to the file instead of printing it to the terminal:
`shfmt --write {{path/to/file}}`
- Simplify the code, removing redundant pieces of syntax (i.e. removing "$" from vars in expressions):
`shfmt --simplify {{path/to/file}}`