commit 99d8d9e0336bacebab5af4ae00c3f685ffd90f60 parent 5ada88d0d3e25587a1340cc35669c36f608a50db Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Sat, 14 May 2022 12:18:02 +0200 use of mktemp not portable Diffstat:
| M | format.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/format.sh b/format.sh @@ -40,7 +40,7 @@ if [ x"$2" = x ] ; then : ; else fi if [ "$selexp" ] ; then - t=$(mktemp -p .) + t=$(mktemp) trap "rm -f $t" EXIT recsel -e "$selexp" > $t && recfmt -f "$template" < $t