diff options
author | John Ankarström <john@ankarstrom.se> | 2021-07-26 19:32:37 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-07-26 19:32:37 +0200 |
commit | 09c0720ee7f4d949f3f779bb26ccb60faad56cd5 (patch) | |
tree | 30fc911ffc70a78454002e969f31e9b95050b695 /bin/pkgpatch | |
parent | 4ad8ed80a6e8969fd8a2af4ef7e29929126aeaad (diff) | |
download | patches-09c0720ee7f4d949f3f779bb26ccb60faad56cd5.tar.gz |
Move patch utilities to bin/
Diffstat (limited to 'bin/pkgpatch')
-rwxr-xr-x | bin/pkgpatch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/pkgpatch b/bin/pkgpatch new file mode 100755 index 0000000..d59ea6a --- /dev/null +++ b/bin/pkgpatch @@ -0,0 +1,14 @@ +#!/bin/sh + +# pkgpatch -- patch, saving original files + +move() +{ + for orig in *.$1; do + mv -i "$orig" "${orig%.$1}".$2 + done +} + +move orig ~1~ +trap 'move ~1~ orig; trap -' INT QUIT TERM EXIT +patch -Vt -F3 "$@" |