From: Colin Watson Date: Fri, 8 Jul 2005 19:38:22 +0000 (+0000) Subject: New tool to do 'baz resolved' and then clean up .orig and .rej files X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;ds=sidebyside;h=2fa59552021e8f3e7c0c689fe0645d7ce50e22a3;p=bin.git New tool to do 'baz resolved' and then clean up .orig and .rej files (working around a baz bug). --- diff --git a/bazresolved b/bazresolved new file mode 100755 index 0000000..4faed8f --- /dev/null +++ b/bazresolved @@ -0,0 +1,8 @@ +#! /bin/sh -e +# Same as 'baz resolved', but also cleans up .orig and .rej files. + +baz resolved "$@" + +for file; do + rm -f "$file.orig" "$file.rej" +done