aboutsummaryrefslogtreecommitdiff
path: root/misc/inplace
Commit message (Collapse)AuthorAgeFilesLines
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Update to 1.2.2. (released in 2008..)Akinori MUSHA2010-05-212-5/+5
| | | | Notes: svn path=/head/; revision=254690
* Update to 1.2.0.Akinori MUSHA2007-04-262-4/+4
| | | | | | | | - Suffix every temporary file with the same suffix as the original file, so that file name aware programs can play nicely with it. Notes: svn path=/head/; revision=190910
* Update to 1.1.0.Akinori MUSHA2006-08-022-5/+5
| | | | | | | | | | | | | | | - 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. Notes: svn path=/head/; revision=169458
* - Add SHA256Pav Lucistnik2005-11-251-0/+1
| | | | Notes: svn path=/head/; revision=149438
* With portmgr hat on, reset maintainership of knu's ports since he hasMark Linimon2005-11-111-1/+1
| | | | | | | been inactive more than 6 months. We hope to see him back sometime. Notes: svn path=/head/; revision=147872
* Update to 1.0.4.Akinori MUSHA2004-06-242-3/+3
| | | | | | | | | - Do not permit interruption with signals during a file replacement. - Correct an informational message. Notes: svn path=/head/; revision=112129
* Update to 1.0.3.Akinori MUSHA2004-05-222-3/+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. Notes: svn path=/head/; revision=109701
* Update WWW.Akinori MUSHA2004-05-021-1/+1
| | | | Notes: svn path=/head/; revision=108164
* Update to 1.0.2.Akinori MUSHA2004-05-022-3/+3
| | | | | | | | - Do not make and leave a backup file for a temporary file. - Honor MANPREFIX. Notes: svn path=/head/; revision=108156
* Define RUBY_SHEBANG_FILES.Akinori MUSHA2004-05-011-1/+3
| | | | | | | Pass MANPREFIX. (currently unused) Notes: svn path=/head/; revision=108104
* Add misc/inplace.Akinori MUSHA2004-05-013-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 Notes: svn path=/head/; revision=108099