pipeln ====== A command pipeline creation tool SYNOPSIS -------- pipeln [-x] -- [CMD |..] CMD DESCRIPTION ----------- pipeln builds data processing pipelines without the need to invoke a shell. No argument expansion takes place, which ensures all arguments are properly quoted. The pipeline is described in familiar shell-syntax: A | character is placed behind commands whose output should be redirected as the following command's input. By default, command names are resolved automatically using the PATH environment variable. The -x flag disables this behavior. EXAMPLES -------- Build a data processing pipeline from C with clear argument boundaries: > const char *argv[] = {"tmpl", "--", "ls", "|", "grep", "test", NULL} > execv("/bin/tmpl", argv); AUTHORS ------- Written by Louis Burda .