From owner-cvs-all@FreeBSD.ORG Sun Aug 15 19:10:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEBE116A4CE; Sun, 15 Aug 2004 19:10:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D64043D41; Sun, 15 Aug 2004 19:10:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7FJA5Dg004983; Sun, 15 Aug 2004 19:10:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7FJA5q1004982; Sun, 15 Aug 2004 19:10:05 GMT (envelope-from rwatson) Message-Id: <200408151910.i7FJA5q1004982@repoman.freebsd.org> From: Robert Watson Date: Sun, 15 Aug 2004 19:10:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/dd args.c dd.1 dd.c dd.h extern.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:10:05 -0000 rwatson 2004-08-15 19:10:05 UTC FreeBSD src repository Modified files: bin/dd args.c dd.1 dd.c dd.h extern.h Log: Add a "fillchar" command line argument to dd(1) that permits the user to specify an alternative padding character when using a conversion mode, or when using noerror with sync and an input error occurs. This facilities reading old and error-prone media by allowing the user to more effectively mark error blocks in the output stream. Revision Changes Path 1.40 +12 -0 src/bin/dd/args.c 1.25 +11 -0 src/bin/dd/dd.1 1.43 +7 -2 src/bin/dd/dd.c 1.22 +1 -0 src/bin/dd/dd.h 1.15 +1 -0 src/bin/dd/extern.h