From f500e5825229c6c78d376f07ff2eab1273c18627 Mon Sep 17 00:00:00 2001 From: knu Date: Sat, 1 May 2004 19:13:05 +0000 Subject: 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 --- misc/inplace/pkg-descr | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 misc/inplace/pkg-descr (limited to 'misc/inplace/pkg-descr') diff --git a/misc/inplace/pkg-descr b/misc/inplace/pkg-descr new file mode 100644 index 000000000000..226f1487f0cf --- /dev/null +++ b/misc/inplace/pkg-descr @@ -0,0 +1,14 @@ +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 + +Author: Akinori MUSHA +WWW: http://www.iDaemons.org/cgi-bin/viewcvs.cgi/?root=inplace -- cgit