first commit
This commit is contained in:
parent
c884330ca9
commit
dcc2f600ae
16 changed files with 9152 additions and 0 deletions
30
pages/plugins-slide.md
Normal file
30
pages/plugins-slide.md
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
level: 2
|
||||
---
|
||||
|
||||
# Plugins
|
||||
|
||||
Plugins are any script or executable that print output and exit with a number.
|
||||
|
||||
````md magic-move {lines: true}
|
||||
```bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "HI THERE..."
|
||||
|
||||
exit 0
|
||||
```
|
||||
|
||||
```bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# do some work...
|
||||
sleep 10
|
||||
|
||||
echo "call the president..."
|
||||
|
||||
exit 1
|
||||
```
|
||||
|
||||
|
||||
````
|
||||
Loading…
Add table
Add a link
Reference in a new issue