8 lines
161 B
C
8 lines
161 B
C
#include <rz_util.h>
|
|
|
|
int main() {
|
|
int out;
|
|
printf("%s\n", rz_sys_cmd_str("less", "hello world\nhow are you\n", &out));
|
|
printf("out=%d\n", out);
|
|
return 0;
|
|
}
|