1 2 3 4 5 6 7
#include <stdlib.h> #include <unistd.h> int main(int argc, char *argv[]) { sleep(atoi(argv[1])); return atoi(argv[2]); }