Add an exec daemon plugin (#4424)

This commit is contained in:
Jan Graichen
2020-02-28 19:46:03 +01:00
committed by GitHub
parent 0103691eb6
commit a20e6953d2
9 changed files with 430 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
## Example in bash using STDIN signaling
counter=0
while read; do
echo "counter_bash count=${counter}"
let counter=counter+1
done
(>&2 echo "terminate")