From owner-freebsd-bugs Sun Apr 23 14:21:18 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id OAA07556 for bugs-outgoing; Sun, 23 Apr 1995 14:21:18 -0700 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id OAA07542 for ; Sun, 23 Apr 1995 14:21:12 -0700 Received: from sax.sax.de by irz301.inf.tu-dresden.de with SMTP (5.67b+/DEC-Ultrix/4.3) id AA05822; Sun, 23 Apr 1995 23:20:53 +0200 Received: by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id XAA10361; Sun, 23 Apr 1995 23:20:52 +0200 Received: (from j@localhost) by jette.heep.sax.de (8.6.8/8.6.9) id XAA02387; Sun, 23 Apr 1995 23:09:40 +0200 From: J Wunsch Message-Id: <199504232109.XAA02387@jette.heep.sax.de> Subject: Re: bin/358: incorrect argument handling in "dump" To: ortmann@plains.nodak.edu Date: Sun, 23 Apr 1995 23:09:37 +0200 (MET DST) Cc: freebsd-bugs@freefall.cdrom.com In-Reply-To: <199504231730.KAA02845@freefall.cdrom.com> from "ortmann@plains.nodak.edu" at Apr 23, 95 10:30:00 am Reply-To: joerg_wunsch@uriah.heep.sax.de X-Phone: +49-351-2012 669 X-Mailer: ELM [version 2.4 PL23] Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 466 Sender: bugs-owner@FreeBSD.org Precedence: bulk > >Synopsis: incorrect argument handling in "dump" > >Description: > > The command "dump -0cu -b 8 -B 349525 -f /dev/nrst0 /" gives > an error of "Unknown arguments to dump: 8 -B 349525 -f /dev/nrst0 /". This is not expected to work. dump is a really old program with a very specific syntax (same boat as `dd'). The above line should be written as dump 0cubBf 8 349525 /dev/nrst0 / I can't test it right now, but i'd expect it to work this way. Jörg