9016d288f1
We've already seen the issue with echo(1): Before we changed it to ignore "--", the command $ echo -- did not work as expected. Given POSIX mandated this and makes most sense, in the interest of consistency the other tools need to be streamlined for that as well. Looking at yes(1) for instance, there's no reason to skip "--" in the argument list. We do not have long options like GNU does and there's no reason to tinker with that here. The majority of tools changed are ones taking lists of arguments or only a single one. There's no reason why dirname should "fail" on "--". In the end, this is a valid name. The practice of hand-holding the user was established with the GNU coreutils. "--help" and "--version" long-options are a disgrace to what could've been done properly with manpages.
46 lines
881 B
C
46 lines
881 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
|
|
#include "util.h"
|
|
|
|
static void
|
|
usage(void)
|
|
{
|
|
eprintf("usage: %s cmd [arg ...]\n", argv0);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
int fd, savederrno;
|
|
|
|
argv0 = argv[0], argc--, argv++;
|
|
|
|
if (!argc)
|
|
usage();
|
|
|
|
if (signal(SIGHUP, SIG_IGN) == SIG_ERR)
|
|
enprintf(127, "signal HUP:");
|
|
|
|
if (isatty(STDOUT_FILENO)) {
|
|
if ((fd = open("nohup.out", O_APPEND | O_CREAT, S_IRUSR | S_IWUSR)) < 0)
|
|
enprintf(127, "open nohup.out:");
|
|
if (dup2(fd, STDOUT_FILENO) < 0)
|
|
enprintf(127, "dup2:");
|
|
close(fd);
|
|
}
|
|
if (isatty(STDERR_FILENO) && dup2(STDOUT_FILENO, STDERR_FILENO) < 0)
|
|
enprintf(127, "dup2:");
|
|
|
|
execvp(argv[0], argv);
|
|
savederrno = errno;
|
|
weprintf("execvp %s:", argv[0]);
|
|
|
|
_exit(126 + (savederrno == ENOENT));
|
|
}
|