view toys/other/realpath.c @ 1104:e11684e3bbc5 draft

Merge toynet.h into toys.h: musl supports it and micromanaging uClibc config options isn't very interesting anymore.
author Rob Landley <rob@landley.net>
date Sat, 02 Nov 2013 14:24:33 -0500
parents 6cc69be43c42
children
line wrap: on
line source

/* realpath.c - Return the canonical version of a pathname
 *
 * Copyright 2012 Andre Renaud <andre@bluewatersys.com>

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("%s", *s);
    else xputs(toybuf);
  }
}