1*2a3e3873SBaptiste Daroussin#!/bin/sh 2*2a3e3873SBaptiste Daroussin# $Id: setup-tempfile,v 1.3 2012/07/06 17:51:56 tom Exp $ 34c8945a0SNathan Whitehorn# vile:shmode 44c8945a0SNathan Whitehorn 5*2a3e3873SBaptiste Daroussintempfile=`(tempfile) 2>/dev/null` || tempfile=/tmp/test$$ 6*2a3e3873SBaptiste Daroussintrap "rm -f $tempfile" 0 $SIG_NONE $SIG_HUP $SIG_INT $SIG_TRAP $SIG_TERM 7