Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-24T20:28:56.000Z (almost 5 years ago)
- Last Synced: 2024-07-28T15:25:58.453Z (3 months ago)
- Topics: autogit, command, shell
- Language: TypeScript
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- 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