From owner-cvs-all@FreeBSD.ORG Sat May 1 12:13: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 E7F9C16A4CE; Sat, 1 May 2004 12:13:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7FCB43D4C; Sat, 1 May 2004 12:13:05 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i41JD5Ge090269; Sat, 1 May 2004 12:13:05 -0700 (PDT) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i41JD57x090268; Sat, 1 May 2004 12:13:05 -0700 (PDT) (envelope-from knu) Message-Id: <200405011913.i41JD57x090268@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 1 May 2004 12:13:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc Makefile ports/misc/inplace Makefile distinfo pkg-descr 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: Sat, 01 May 2004 19:13:06 -0000 knu 2004/05/01 12:13:05 PDT FreeBSD ports repository Modified files: misc Makefile Added files: misc/inplace Makefile distinfo pkg-descr Log: Add misc/inplace. The inplace(1) command is a utility to edit files in-place through given filter commands preserving the original file attributes. Mode and ownership (user and group) are preserved by default, and time (access and modification) by choice. Examples: # Sort files in-place using sort(1): inplace sort file1 file2 file3 # Process image files preserving time and taking backup files: inplace -t -b.orig 'convert -rotate 270 -resize 50%% %1 %2' *.jpg Revision Changes Path 1.680 +1 -0 ports/misc/Makefile 1.1 +36 -0 ports/misc/inplace/Makefile (new) 1.1 +2 -0 ports/misc/inplace/distinfo (new) 1.1 +14 -0 ports/misc/inplace/pkg-descr (new)