diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2021-10-13 15:04:54 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2021-10-13 15:04:54 +0000 |
commit | 08802b73d28cfa0635bcd603b2f3ecbe86cf6b0b (patch) | |
tree | 77a6f3271138ebaa49497118e816cb6f1970b5bf /usr.bin/realpath/realpath.1 | |
parent | 01ba3e0eb97cea4f7a04ee28e143a6b8e7b36092 (diff) |
Provide realpath(1)
A tiny realpath(3) wrapper to make a porter's life easier.
Feedback kettenis deraadt cheloha sthen
OK cheloha martijn deraadt
Diffstat (limited to 'usr.bin/realpath/realpath.1')
-rw-r--r-- | usr.bin/realpath/realpath.1 | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/usr.bin/realpath/realpath.1 b/usr.bin/realpath/realpath.1 new file mode 100644 index 00000000000..5bc4d49d196 --- /dev/null +++ b/usr.bin/realpath/realpath.1 @@ -0,0 +1,56 @@ +.\" $OpenBSD: realpath.1,v 1.1 2021/10/13 15:04:53 kn Exp $ +.\" +.\" Copyright (c) 2021 Klemens Nanni <kn@openbsd.org> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: October 13 2021 $ +.Dt REALPATH 1 +.Os +.Sh NAME +.Nm realpath +.Nd print the canonicalized absolute pathname +.Sh SYNOPSIS +.Nm +.Op Fl q +.Ar file +.Sh DESCRIPTION +The +.Nm +utility uses +.Xr realpath 3 +to resolve all symbolic links, extra +.Dq / +characters and references to +.Pa /./ +and +.Pa /../ +in +.Ar file , +and prints the absolute pathname on standard output. +.Pp +The options are as follows: +.Bl -tag -width Ds +.It Fl q +Do not print errors. +.El +.Sh EXIT STATUS +.Ex -std +.Sh SEE ALSO +.Xr readlink 1 , +.Xr realpath 3 +.Sh HISTORY +The +.Nm +utility first appeared in +.Ox 7.1 . |