├── .github └── workflows │ └── ci.yml ├── LICENSE.txt ├── README.md ├── cmd.asd ├── cmd.lisp ├── hooks.lisp ├── package.lisp ├── test.lisp └── test ├── foo bar └── a file └── literal.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/README.md -------------------------------------------------------------------------------- /cmd.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/cmd.asd -------------------------------------------------------------------------------- /cmd.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/cmd.lisp -------------------------------------------------------------------------------- /hooks.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/hooks.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- 1 | ;;;; package.lisp 2 | -------------------------------------------------------------------------------- /test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cmd/HEAD/test.lisp -------------------------------------------------------------------------------- /test/foo bar/a file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/literal.txt: -------------------------------------------------------------------------------- 1 | literal string 2 | --------------------------------------------------------------------------------