2017-04-24 14:47:10 +02:00
|
|
|
// Copyright (c) 2017, Daniel Martí <mvdan@mvdan.cc>
|
|
|
|
// See LICENSE for licensing information
|
|
|
|
|
|
|
|
// Package interp implements an interpreter that executes shell
|
2017-07-31 00:11:34 +02:00
|
|
|
// programs. It aims to support POSIX, but its support is not complete
|
|
|
|
// yet. It also supports some Bash features.
|
2017-04-24 14:47:10 +02:00
|
|
|
//
|
|
|
|
// This package is a work in progress and EXPERIMENTAL; its API is not
|
|
|
|
// subject to the 1.x backwards compatibility guarantee.
|
2017-09-02 16:19:00 +02:00
|
|
|
package interp // import "mvdan.cc/sh/interp"
|