blob: 1c112d9fb9c56eb7659ef121358ca18943df391e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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://akinori.org/#inplace
|