sh

module
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 5, 2017 License: BSD-3-Clause

README

sh

GoDoc Build Status

A shell parser and formatter. Supports POSIX Shell and Bash.

For a quick overview, see the examples. Requires Go 1.6 or later.

shfmt
go get -u github.com/mvdan/sh/cmd/shfmt

shfmt formats shell programs. It can use tabs or any number of spaces to indent. See canonical.sh for a quick look at its style.

You can feed it standard input, any number of files or any number of directories to recurse into. When recursing, it will operate on .sh and .bash files and ignore files starting with a period. It will also operate on files with no extension and a shell shebang.

shfmt -l -w script.sh

Use -i N to indent with a number of spaces instead of tabs.

Packages are available for Arch, Homebrew, NixOS and Void.

Fuzzing

This project makes use of go-fuzz to find crashes and hangs in both the parser and the printer. To get started, run:

git checkout fuzz
./fuzz
Caveats

Supporting some of these could be possible, but they would involve major drawbacks explained below.

  • Associative arrays. Cannot be parsed statically as that depends on whether array was defined via declare -A.
 $ echo '${array[spaced string]}' | shfmt
1:16: not a valid arithmetic operator: string
  • $(( and (( ambiguity. This means backtracking, which would greatly complicate the parser. In practice, the POSIX spec recommends to space the operands if $( ( is meant.
 $ echo '$((foo); (bar))' | shfmt
1:1: reached ) without matching $(( with ))

Directories

Path Synopsis
cmd
Package syntax implements parsing and formatting of shell programs.
Package syntax implements parsing and formatting of shell programs.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL