We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f667ca1 commit 7d4b8a9Copy full SHA for 7d4b8a9
docs-src/index.md
@@ -47,3 +47,19 @@ Use the core plugin's **queue:consume** command of course:
47
```bash
48
inengine.exe -pInEngine.Core queue:consume
49
```
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