From 3a9241add947cb6d24b5de7a8927517426a78795 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 25 Aug 2012 14:25:22 -0500 Subject: Move commands into "posix", "lsb", and "other" menus/directories. --- toys/other/realpath.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 toys/other/realpath.c (limited to 'toys/other/realpath.c') diff --git a/toys/other/realpath.c b/toys/other/realpath.c new file mode 100644 index 00000000..10457cf6 --- /dev/null +++ b/toys/other/realpath.c @@ -0,0 +1,31 @@ +/* vi: set sw=4 ts=4: + * + * realpath.c - Return the canonical version of a pathname + * + * Copyright 2012 Andre Renaud + * + * Not in SUSv4. + +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("cannot access '%s'", *s); + toys.exitval = 1; + } else xputs(toybuf); + } +} -- cgit v1.2.3