468dea18fd
Reviewed by: Watanabe Kazuhiro <CQG00620@nifty.ne.jp>, hrs Approved by: kuriyama (mentor/implicitly)
96 lines
3 KiB
Groff
96 lines
3 KiB
Groff
.\" %NetBSD: rmdir.1,v 1.9 1995/03/21 09:08:29 cgd Exp %
|
|
.\"
|
|
.\" Copyright (c) 1990, 1993
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
.\"
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
.\" the Institute of Electrical and Electronics Engineers, Inc.
|
|
.\"
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
.\" modification, are permitted provided that the following conditions
|
|
.\" are met:
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
.\" may be used to endorse or promote products derived from this software
|
|
.\" without specific prior written permission.
|
|
.\"
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
.\" SUCH DAMAGE.
|
|
.\"
|
|
.\" @(#)rmdir.1 8.1 (Berkeley) 5/31/93
|
|
.\" %FreeBSD: src/bin/rmdir/rmdir.1,v 1.11 2004/04/06 20:06:51 markm Exp %
|
|
.\" $FreeBSD$
|
|
.\"
|
|
.Dd March 21, 2004
|
|
.Dt RMDIR 1
|
|
.Os
|
|
.Sh 名称
|
|
.Nm rmdir
|
|
.Nd ディレクトリの削除
|
|
.Sh 書式
|
|
.Nm
|
|
.Op Fl pv
|
|
.Ar directory ...
|
|
.Sh 解説
|
|
.Nm
|
|
は、
|
|
.Ar directory
|
|
で指定したディレクトリが空の場合、削除を行います。
|
|
.Pp
|
|
.Nm
|
|
は、
|
|
.Ar directory
|
|
で指定した順番にディレクトリの削除を試みます。
|
|
親ディレクトリとそのサブディレクトリを削除する場合は、先にサブディ
|
|
レクトリが削除されるようにしなければなりません。
|
|
.Nm
|
|
が親ディレクトリを削除する時に、
|
|
当該親ディレクトリが空となっている必要があるからです。
|
|
.Pp
|
|
オプションとしては以下のものがあります:
|
|
.Bl -tag -width indent
|
|
.It Fl p
|
|
各
|
|
.Ar directory
|
|
引数に関し、指定したパス名を構成する全てのディレクトリについて、
|
|
それが空ならば削除します。削除はそのパス名の最後の要素から行います。(
|
|
.Xr rm 1
|
|
の完全な無差別再帰削除を参照して下さい。)
|
|
.It Fl v
|
|
冗長な出力をし、ディレクトリが削除されるにしたがって、
|
|
削除されたそれぞれのディレクトリを表示します。
|
|
.El
|
|
.Pp
|
|
.Nm
|
|
は以下のいずれかの値を返します:
|
|
.Bl -tag -width Ds
|
|
.It Li \&0
|
|
引数で指定されるディレクトリは空であり、削除に成功しました。
|
|
.It Li \&>\&0
|
|
エラーが発生しました。
|
|
.El
|
|
.Sh 関連項目
|
|
.Xr rm 1
|
|
.Sh 規格
|
|
.Nm
|
|
コマンドは
|
|
.St -p1003.2
|
|
互換です。
|
|
.Sh 歴史
|
|
.Nm
|
|
コマンドは
|
|
.At v1
|
|
から登場しました。
|