mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
12882265c6
new file: projects/libpipeline.gitlab.io/libpipeline/test.c
7 lines
200 B
C
7 lines
200 B
C
#include <pipeline.h>
|
|
int main() {
|
|
pipeline *p = pipeline_new();
|
|
pipeline_command_args(p, "echo", "Hello world", NULL);
|
|
pipeline_command_args(p, "cat", NULL);
|
|
return pipeline_run(p);
|
|
} |