pipeln

Pipeline creation tool
git clone https://git.sinitax.com/sinitax/pipeln
Log | Files | Refs | README | LICENSE | sfeed.txt

README (829B)


      1pipeln
      2======
      3
      4A command pipeline creation tool
      5
      6SYNOPSIS
      7--------
      8
      9pipeln [-x] -- [CMD |..] CMD
     10
     11DESCRIPTION
     12-----------
     13
     14pipeln builds data processing pipelines without the need to invoke a shell.
     15No argument expansion takes place, which ensures all arguments are properly quoted.
     16
     17The pipeline is described in familiar shell-syntax:
     18A | character is placed behind commands whose output should be redirected
     19as the following command's input.
     20
     21By default, command names are resolved automatically using the PATH
     22environment variable. The -x flag disables this behavior.
     23
     24EXAMPLES
     25--------
     26
     27Build a data processing pipeline from C with clear argument boundaries:
     28
     29> const char *argv[] = {"tmpl", "--", "ls", "|", "grep", "test", NULL}
     30> execv("/bin/tmpl", argv);
     31
     32AUTHORS
     33-------
     34
     35Written by Louis Burda <quent.burda@gmail.com>.