blob: 6c162596c264fcdb12bbc9b54d6e3b2e36f94507 [file] [log] [blame] [raw]
/* nohup - toolbox
Copyright 2015 libdll.so
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*/
#include <unistd.h>
#include <stdio.h>
int nohup_main(int argc, char *argv[]) {
pid_t check;
if(argc == 1) {
fprintf(stderr, "%s: missing operand\n"
"Try '%s -h' for more information.\n",
argv[0], argv[0]);
return -1;
}
#if 0
// We should reduce the options check.
// The options of this tool are so simple, and needn't to use getopt.
while(1) {
c = getopt(argc, argv, "h");
if(c== EOF)
break;
switch(c) {
case 'h':
fprintf(stdout, "Usage: %s <command> [<arg>] [...]\n", argv[0]);
return 0;
case '?':
fprintf(stdout, "Try 'nohup -h' for more information.\n");
return 1;
}
}
#else
if(argv[1][0] == '-') {
switch(argv[1][1]) {
case 0:
break;
case '-':
if(!argv[1][2]) break;
fprintf(stdout, "%s: invalid option '%s'\n"
"Try '%s -h' for more information.\n",
argv[0], argv[1], argv[0]);
return 1;
case 'h':
fprintf(stdout, "Usage: %s <command> [<arg>] [...]\n", argv[0]);
return 0;
default:
fprintf(stdout, "%s: invalid option '-%c'\n"
"Try '%s -h' for more information.\n",
argv[0], argv[1][1], argv[0]);
return 1;
}
}
#endif
check = fork();
/* fprintf(stdout, "1pid is = %d\n", check); */
if(check == -1) {
perror("Fork error");
return -1;
}
if(check == 0) {
check = fork();
/* fprintf(stdout, "2pid is = %d\n", check); */
if(check == -1) {
perror("Fork error");
return 1;
}
if(check == 0) {
argv++;
/* fprintf(stdout, "execing\n"); */
execvp(*argv, argv);
perror("execerr");
return 2;
}
return 0;
}
return 0;
}