https://github.com/sceptre/sceptre-cmd-hook
Sceptre Command Hook
https://github.com/sceptre/sceptre-cmd-hook
sceptre sceptre-hook
Last synced: about 1 month ago
JSON representation
Sceptre Command Hook
- Host: GitHub
- URL: https://github.com/sceptre/sceptre-cmd-hook
- Owner: Sceptre
- Created: 2019-07-12T14:02:32.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T20:51:15.000Z (over 2 years ago)
- Last Synced: 2025-01-21T10:14:27.226Z (3 months ago)
- Topics: sceptre, sceptre-hook
- Language: Python
- Size: 8.79 KB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# CMD Hook
Executes the argument string in the shell as a Python subprocess.
For more information about how this works, see the
[subprocess documentation](https://docs.python.org/3/library/subprocess.html)Syntax:
```yaml
:
- !cmd
```Example:
```yaml
before_create:
- !cmd 'echo hello'
```