Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update WWW. | knu | 2004-05-03 | 1 | -1/+1 |
| | |||||
* | Update to 1.0.2. | knu | 2004-05-02 | 2 | -3/+3 |
| | | | | | - Do not make and leave a backup file for a temporary file. - Honor MANPREFIX. | ||||
* | Define RUBY_SHEBANG_FILES. | knu | 2004-05-02 | 1 | -1/+3 |
| | | | | Pass MANPREFIX. (currently unused) | ||||
* | Add misc/inplace. | knu | 2004-05-02 | 3 | -0/+52 |
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 |