The fll standard console arguments now inclide +p, ++pipe.
This pipe command requires a single numeric argument that represents the size of the pipe.
When this is specified, it tells the application to read from pipe in byte chunks of the specified size.
The default pipe size is left up to the application when this is not specified.
#define f_console_standard_short_help "h"
#define f_console_standard_short_light "l" // usage: +l
#define f_console_standard_short_no_color "n" // usage: +n
+ #define f_console_standard_short_pipe "p" // usage: +p <size>
#define f_console_standard_short_version "v"
#define f_console_standard_long_help "help"
#define f_console_standard_long_light "light"
#define f_console_standard_long_no_color "no_color"
+ #define f_console_standard_long_pipe "pipe"
#define f_console_standard_long_version "version"
#endif // _di_f_standard_console_parameters_