1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 05:02:10 +02:00
tldr/pages/common/pathchk.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

562 B

pathchk

Check the validity and portability of pathnames. More information: https://www.gnu.org/software/coreutils/manual/html_node/pathchk-invocation.html.

  • Check pathnames for validity in the current system:

pathchk {{path1 path2 …}}

  • Check pathnames for validity on a wider range of POSIX compliant systems:

pathchk -p {{path1 path2 …}}

  • Check pathnames for validity on all POSIX compliant systems:

pathchk --portability {{path1 path2 …}}

  • Only check for empty pathnames or leading dashes (-):

pathchk -P {{path1 path2 …}}