https://github.com/fabiospampinato/autogit-command-shell
A command for executing a plain shell command.
https://github.com/fabiospampinato/autogit-command-shell
autogit command shell
Last synced: about 1 year ago
JSON representation
A command for executing a plain shell command.
- Host: GitHub
- URL: https://github.com/fabiospampinato/autogit-command-shell
- Owner: fabiospampinato
- License: mit
- Archived: true
- Created: 2018-10-08T03:47:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-24T20:28:56.000Z (over 6 years ago)
- Last Synced: 2025-05-10T02:43:37.551Z (about 1 year ago)
- Topics: autogit, command, shell
- Language: TypeScript
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Autogit Command - Shell
A command for executing a plain shell command.
## Install
```sh
npm install --save autogit-command-shell
```
## Usage
#### Configuration
Add this command to your configuration:
```js
const shell = require ( 'autogit-command-shell' );
module.exports = {
commands: {
shell
}
}
```
#### CLI
Call it from the CLI with:
```sh
autogit shell
autogit shell 'rm -rf node_modules'
autogit shell 'npm audit fix' --include '**/js-*'
```
## License
MIT © Fabio Spampinato