aboutsummaryrefslogtreecommitdiff
path: root/toys/other/readlink.c
blob: b7f77f916710fdbb3eed4a9ef2a0aac59e32d81d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* readlink.c - Return string representation of a symbolic link.
 *
 * Copyright 2007 Rob Landley <rob@landley.net>

USE_READLINK(NEWTOY(readlink, "<1f", TOYFLAG_BIN))

config READLINK
  bool "readlink"
  default n
  help
    usage: readlink

    Show what a symbolic link points to.

config READLINK_F
  bool "readlink -f"
  default n
  depends on READLINK
  help
    usage: readlink [-f]

    -f	Show full cannonical path, with no symlinks in it.  Returns
    	nonzero if nothing could currently exist at this location.
*/

#include "toys.h"

void readlink_main(void)
{
  char *s;

  // Calculating full cannonical path?

  if (CFG_READLINK_F && toys.optflags) s = xrealpath(*toys.optargs);
  else s = xreadlink(*toys.optargs);

  if (s) {
    xputs(s);
    if (CFG_TOYBOX_FREE) free(s);
  } else toys.exitval = 1;
}