├── Readme.md ├── cmd └── stitch │ └── main.go ├── fixtures ├── a.sh ├── b.sh ├── e.sh └── nested │ ├── again │ └── d.sh │ └── c.sh ├── stitch.go └── stitch_test.go /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/stitch/HEAD/Readme.md -------------------------------------------------------------------------------- /cmd/stitch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/stitch/HEAD/cmd/stitch/main.go -------------------------------------------------------------------------------- /fixtures/a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/stitch/HEAD/fixtures/a.sh -------------------------------------------------------------------------------- /fixtures/b.sh: -------------------------------------------------------------------------------- 1 | echo "from b" -------------------------------------------------------------------------------- /fixtures/e.sh: -------------------------------------------------------------------------------- 1 | echo "from e" -------------------------------------------------------------------------------- /fixtures/nested/again/d.sh: -------------------------------------------------------------------------------- 1 | echo "from d" -------------------------------------------------------------------------------- /fixtures/nested/c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/stitch/HEAD/fixtures/nested/c.sh -------------------------------------------------------------------------------- /stitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/stitch/HEAD/stitch.go -------------------------------------------------------------------------------- /stitch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/stitch/HEAD/stitch_test.go --------------------------------------------------------------------------------