diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2004-05-01 19:13:05 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2004-05-01 19:13:05 +0000 |
commit | 211b52d2ab5ebd670632ac2ee997701b60c5e582 (patch) | |
tree | d325c4279d3a809ccfdd090dd47a08d306beb3aa /misc/Makefile | |
parent | 1a4bab358caac14a6ea4a8fbd2a447b621388bb4 (diff) | |
download | ports-211b52d2ab5ebd670632ac2ee997701b60c5e582.tar.gz ports-211b52d2ab5ebd670632ac2ee997701b60c5e582.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
Notes
Notes:
svn path=/head/; revision=108099
Diffstat (limited to 'misc/Makefile')
-rw-r--r-- | misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index a847a6fd28c6..e038a8700f05 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -143,6 +143,7 @@ SUBDIR += histring SUBDIR += hotkeys SUBDIR += hulgalugha + SUBDIR += inplace SUBDIR += instant-server SUBDIR += instant-workstation SUBDIR += iselect |