view toys/other/realpath.c @ 729:aaa638e82e51

The open group changed their website stupidly, so opengroup.org/onlinepubs forwards to a dead server and you have to use pubs.opengroup.org/onlinepubs now. Change the hello template to note the new location. (Waiting to see if they fix it upstream before touching every command in toys/posix.)
author Rob Landley <rob@landley.net>
date Sat, 01 Dec 2012 18:26:21 -0600
parents 786841fdb1e0
children 6cc69be43c42
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("cannot access '%s'", *s);
      toys.exitval = 1;
    } else xputs(toybuf);
  }
}