From 4815b4f35f272ee3a4f8ac13adb5bd5dfc8ff4a6 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 2 Mar 2020 11:32:09 -0600 Subject: Merge realpath into readlink, use xabspath() instead of libc realpath(). --- toys/other/readlink.c | 16 ++++++++++++++++ toys/other/realpath.c | 26 -------------------------- 2 files changed, 16 insertions(+), 26 deletions(-) delete mode 100644 toys/other/realpath.c (limited to 'toys/other') diff --git a/toys/other/readlink.c b/toys/other/readlink.c index 9ebf68d7..bae09536 100644 --- a/toys/other/readlink.c +++ b/toys/other/readlink.c @@ -3,6 +3,7 @@ * Copyright 2007 Rob Landley USE_READLINK(NEWTOY(readlink, "<1nqmef(canonicalize)[-mef]", TOYFLAG_USR|TOYFLAG_BIN)) +USE_REALPATH(NEWTOY(realpath, "<1", TOYFLAG_USR|TOYFLAG_BIN)) config READLINK bool "readlink" @@ -19,9 +20,18 @@ config READLINK -m Ignore missing entries, show where it would be -n No trailing newline -q Quiet (no output, just error code) + +config REALPATH + bool "realpath" + default y + help + usage: realpath FILE... + + Display the canonical absolute pathname */ #define FOR_readlink +#define FORCE_FLAGS #include "toys.h" void readlink_main(void) @@ -41,3 +51,9 @@ void readlink_main(void) } else toys.exitval = 1; } } + +void realpath_main(void) +{ + toys.optflags = FLAG_f; + readlink_main(); +} diff --git a/toys/other/realpath.c b/toys/other/realpath.c deleted file mode 100644 index 8f75d3f2..00000000 --- a/toys/other/realpath.c +++ /dev/null @@ -1,26 +0,0 @@ -/* realpath.c - Return the canonical version of a pathname - * - * Copyright 2012 Andre Renaud - -USE_REALPATH(NEWTOY(realpath, "<1", TOYFLAG_USR|TOYFLAG_BIN)) - -config REALPATH - bool "realpath" - default y - help - usage: realpath FILE... - - Display the canonical absolute pathname -*/ - -#include "toys.h" - -void realpath_main(void) -{ - char **s = toys.optargs; - - for (s = toys.optargs; *s; s++) { - if (!realpath(*s, toybuf)) perror_msg_raw(*s); - else xputs(toybuf); - } -} -- cgit v1.2.3