From 892841435e5863151e831a93c04f3d7da690d8c6 Mon Sep 17 00:00:00 2001 From: Gitea Date: Mon, 14 Dec 2020 07:16:12 -0600 Subject: [PATCH] manual --- rmdir.1 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 rmdir.1 diff --git a/rmdir.1 b/rmdir.1 new file mode 100644 index 0000000..f85be2b --- /dev/null +++ b/rmdir.1 @@ -0,0 +1,26 @@ +.TH RMDIR 1 +.SH NAME +rmdir \- remove empty directories +.SH SYNOPSIS +.B rmdir +[\fB\-p\fR] +.IR dir ... +.SH DESCRIPTION +.B rmdir +removes specified directory entries. It will only remove empty directories. +It will not remove directories that still contain stuff. For that, see rm(1) +.SH OPTIONS +.TP +.BR \-p +Remove all directories in pathname. e.g. If the directory argument is +\fBproject/subproject/dir\fR, rmdir will first remove dir, then remove +subproject, then remove project. +.SH AUTHOR +Written by Kat. +.SH COPYRIGHT +Copyright (C) 2020 The FENIX Project +.PP +This software is free software. Feel free to modify it and/or pass +it around. +.PP +This \fBrmdir\fR implementation is a part of the fenutils package. \ No newline at end of file