aboutsummaryrefslogtreecommitdiffstats
path: root/misc/inplace/pkg-descr
diff options
context:
space:
mode:
authorknu <knu@FreeBSD.org>2004-05-02 03:13:05 +0800
committerknu <knu@FreeBSD.org>2004-05-02 03:13:05 +0800
commitf500e5825229c6c78d376f07ff2eab1273c18627 (patch)
tree898a59997174dfa56d13dc8f2acd84ac042d54dd /misc/inplace/pkg-descr
parentfdf93eec14e8d0f6f658bc267458dcf72d89be54 (diff)
downloadfreebsd-ports-gnome-f500e5825229c6c78d376f07ff2eab1273c18627.tar.gz
freebsd-ports-gnome-f500e5825229c6c78d376f07ff2eab1273c18627.tar.zst
freebsd-ports-gnome-f500e5825229c6c78d376f07ff2eab1273c18627.zip
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
Diffstat (limited to 'misc/inplace/pkg-descr')
-rw-r--r--misc/inplace/pkg-descr14
1 files changed, 14 insertions, 0 deletions
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 <knu@iDaemons.org>
+WWW: http://www.iDaemons.org/cgi-bin/viewcvs.cgi/?root=inplace