This commit is contained in:
Gitea 2020-12-14 07:16:12 -06:00
parent 3673865c00
commit 892841435e
1 changed files with 26 additions and 0 deletions

26
rmdir.1 Normal file
View File

@ -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.