12a3e3873SBaptiste Daroussin#!/bin/sh 2*f4f33ea0SBaptiste Daroussin# $Id: setup-tempfile,v 1.4 2016/01/26 22:42:47 tom Exp $ 34c8945a0SNathan Whitehorn# vile:shmode 44c8945a0SNathan Whitehorn 52a3e3873SBaptiste Daroussintempfile=`(tempfile) 2>/dev/null` || tempfile=/tmp/test$$ 6*f4f33ea0SBaptiste Daroussintrap "rm -f $tempfile" 0 $SIG_NONE $SIG_HUP $SIG_INT $SIG_QUIT $SIG_TERM 7