├── .gitignore ├── LICENSE ├── README.md ├── cmd_unix.go ├── cmd_windows.go ├── example └── .gawp ├── gawp.go └── logo.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/README.md -------------------------------------------------------------------------------- /cmd_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/cmd_unix.go -------------------------------------------------------------------------------- /cmd_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/cmd_windows.go -------------------------------------------------------------------------------- /example/.gawp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/example/.gawp -------------------------------------------------------------------------------- /gawp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/gawp.go -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martingallagher/gawp/HEAD/logo.svg --------------------------------------------------------------------------------