program() Source Driver
The program driver starts an external application and reads messages from the standard output (stdout) of the application.
Status
How to Test
Shell Script
#!/bin/bash
while true
do
echo "Hi"
sleep 1
doneConfiguration File Used
@version: 3.31
@include "scl.conf"
source s_program {
program("/Users/yash/Documents/test.sh");
};
destination console{
file(/dev/stdout);
};
log {
source(s_program);
destination(console);
};Proof


Last updated