From owner-freebsd-commit Mon Feb 19 06:33:12 1996 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA26642 for freebsd-commit-outgoing; Mon, 19 Feb 1996 06:33:12 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA26629 for cvs-all-outgoing; Mon, 19 Feb 1996 06:32:48 -0800 (PST) Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id GAA26518 Mon, 19 Feb 1996 06:30:58 -0800 (PST) Received: from caramba.cs.tu-berlin.de (wosch@caramba.cs.tu-berlin.de [130.149.17.12]) by mail.cs.tu-berlin.de (8.6.12/8.6.12) with ESMTP id OAA05161; Mon, 19 Feb 1996 14:09:37 +0100 From: Wolfram Schneider Received: (wosch@localhost) by caramba.cs.tu-berlin.de (8.6.12/8.6.9) id OAA29857; Mon, 19 Feb 1996 14:09:34 +0100 Date: Mon, 19 Feb 1996 14:09:34 +0100 Message-Id: <199602191309.OAA29857@caramba.cs.tu-berlin.de> To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) Cc: ache@astral.msk.su (=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=), CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-bin@freefall.freebsd.org, wosch@freefall.freebsd.org Subject: Re: cvs commit: src/bin/mv mv.1 mv.c In-Reply-To: <199602182312.AAA09188@uriah.heep.sax.de> References: <199602182312.AAA09188@uriah.heep.sax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Conversion: prohibited Sender: owner-commit@FreeBSD.ORG Precedence: bulk J. Wunsch writes: >As =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= wrote: > >> > option -f and -i are exclusive > >This breaks Posix: No. > > The following options shall be supported by the implementation: > > -f [...] >Any previous occurrences of the -i option shall be ignored. Ignored by FreeBSD in source code, iflg is still 1 > -i [...] >Any previous occurrences of the -f option shall be ignored. Ignored by FreeBSD > Specifying more than one of the -f or -i options shall not be considered > an error. The last option specified shall determine mv's behavior. Ignored by FreeBSD. $ touch a b;mv -fi a b $