123456789101112131415161718192021 |
- #include <stdio.h>
- #include <stdlib.h>
- #include "private.h"
- bool_t clish_script_callback(const clish_shell_t * shell, const char *script)
- {
- #ifdef DEBUG
- fprintf(stderr, "SYSTEM: %s\n", script);
- #endif
- return (0 == system(script)) ? BOOL_TRUE : BOOL_FALSE;
- }
|