tail head cat sleep
QR code linking to this page

Manual Pages  — PATHCHK

NAME

pathchk – check pathnames

CONTENTS

SYNOPSIS


pathchk [-pP] pathname ...

DESCRIPTION

The pathchk utility checks whether each of the specified pathname arguments is valid or portable.

A diagnostic message is written for each argument that:

It is not considered an error if a pathname argument contains a nonexistent component as long as a component by that name could be created.

The options are as follows:
-p
  Perform portability checks on the specified pathname arguments. Diagnostic messages will be written for each argument that:
  • Is longer than _POSIX_PATH_MAX (255) bytes.
  • Contains a component longer than _POSIX_NAME_MAX (14) bytes.
  • Contains any character not in the portable filename character set (that is, alphanumeric characters, ‘amp;.’, ‘amp;-’ and ‘_’). No component may start with the hyphen (‘amp;-’) character.
-P
  In addition to the default or -p checks, write a diagnostic for each argument that:
  • Is empty.
  • Contains a component that starts with a hyphen.

EXIT STATUS

The utility exits 0 on success, and >0 if an error occurs.

EXAMPLES

Check whether the names of files in the current directory are portable to other POSIX systems:

    find . -exec pathchk -p -- {} +

SEE ALSO

getconf(1), pathconf(2), stat(2)

STANDARDS

The pathchk utility conforms to IEEE Std 1003.1-2001 ("POSIX.1").

HISTORY

A pathchk utility appeared in FreeBSD 5.0 .

PATHCHK (1) May 1, 2010

tail head cat sleep
QR code linking to this page


Please direct any comments about this manual page service to Ben Bullock. Privacy policy.