summaryrefslogtreecommitdiff
path: root/write-ifchanged
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-08-27 17:36:46 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-08-27 17:36:46 -0400
commitb373a3a6e1702e7514bb405122a2311d16d85fcd (patch)
tree1b8ededef1b8ac60ec3b1a8a347cfc1669f61bb1 /write-ifchanged
parentd4359dc767d3524a16f529f3545d89ab558e1b8f (diff)
Teach it to make atom:entry files
Diffstat (limited to 'write-ifchanged')
-rwxr-xr-xwrite-ifchanged25
1 files changed, 25 insertions, 0 deletions
diff --git a/write-ifchanged b/write-ifchanged
new file mode 100755
index 0000000..185ceb0
--- /dev/null
+++ b/write-ifchanged
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+# Copyright (C) 2015 Luke Shumaker
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+outfile=$1
+tmpfile="$(dirname "$outfile")/.tmp${outfile##*/}"
+
+cat > "$tmpfile" || exit $?
+if cmp -s "$tmpfile" "$outfile"; then
+ rm -f "$tmpfile" || :
+else
+ mv -f "$tmpfile" "$outfile"
+fi