| Commit History - (may be incomplete: see CVSWeb link above for full details) |
| Date | By | Description |
26 Apr 2007 10:49:00
1.2.0
|
knu  |
Update to 1.2.0.
- Suffix every temporary file with the same suffix as the original
file, so that file name aware programs can play nicely with it. |
02 Aug 2006 12:20:05
1.1.0
|
knu  |
Update to 1.1.0.
- Add -D/--debug and adjust the verbosity level.
- Show before and after file sizes when -v is specified.
- Introduce a configuration file in which command aliases can be
defined.
- Add -i/--preserve-inode so inode numbers are preserved even when -b
or -s is specified. |
25 Nov 2005 16:09:33
1.0.4
|
pav  |
- Add SHA256 |
11 Nov 2005 01:18:01
1.0.4
|
linimon  |
With portmgr hat on, reset maintainership of knu's ports since he has
been inactive more than 6 months. We hope to see him back sometime. |
24 Jun 2004 14:30:31
1.0.4
|
knu  |
Update to 1.0.4.
- Do not permit interruption with signals during a file replacement.
- Correct an informational message. |
22 May 2004 13:45:59
1.0.3
|
knu  |
Update to 1.0.3.
- Do not edit read-only files by default.
- Add -f/--force to make it force editing even if a file to process is
read-only. |
02 May 2004 17:16:25
1.0.1
|
knu  |
Update WWW. |
02 May 2004 13:26:36
1.0.1
|
knu  |
Update to 1.0.2.
- Do not make and leave a backup file for a temporary file.
- Honor MANPREFIX. |
01 May 2004 20:23:11
1.0.1
|
knu  |
Define RUBY_SHEBANG_FILES.
Pass MANPREFIX. (currently unused) |
01 May 2004 20:13:05
1.0.1
|
knu  |
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 |