The readlink from linux it is not the same in MacOSX:
STAT(1) BSD General Commands Manual STAT(1)
NAME
readlink, stat -- display file status
SYNOPSIS
stat [-FLnq] [-f format | -l | -r | -s | -x] [-t timefmt] [file ...]
readlink [-n] [file ...]
DESCRIPTION
The stat utility displays information about the file pointed to by file.
Read, write or execute permissions of the named file are not required,
but all directories listed in the path name leading to the file must be
searchable. If no argument is given, stat displays information about the
file descriptor for standard input.
When invoked as readlink, only the target of the symbolic link is
printed. If the given argument is not a symbolic link, readlink will
print nothing and exit with an error.
What is readlink -fis supposed to do on linuxLinux?
