Skip to content

Commit 7d4b8a9

Browse files
committed
Update docs
1 parent f667ca1 commit 7d4b8a9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs-src/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,19 @@ Use the core plugin's **queue:consume** command of course:
4747
```bash
4848
inengine.exe -pInEngine.Core queue:consume
4949
```
50+
51+
But what if I want to run some non-.NET code?
52+
53+
Use the core plugin's **proc** command to execute any program you like.
54+
55+
Create a hello world python script called **helloworld.py**:
56+
57+
```python
58+
print 'Hello, world!'
59+
```
60+
61+
Now execute it with the **proc** command:
62+
63+
```bash
64+
inengine -pInEngine.Core proc --command=/usr/bin/python --args=helloworld.py
65+
```

0 commit comments

Comments
 (0)