| 123456789101112131415161718 |
- #include <stdlib.h>
- #include <reproc/run.h>
- // Redirects the output of the given command to the reproc.out file.
- int main(int argc, const char **argv)
- {
- (void) argc;
- int r = reproc_run(argv + 1,
- (reproc_options){ .redirect.path = "reproc.out" });
- if (r < 0) {
- fprintf(stderr, "%s\n", reproc_strerror(r));
- }
- return abs(r);
- }
|