Home
last modified time | relevance | path

Searched refs:tempfile (Results 1 – 25 of 111) sorted by relevance

12345

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_003_neg.ksh48 rm -f $testfile $tempfile
55 typeset tempfile=/tmp/tempfile.$$
67 get_xattr passwd $testfile >$tempfile
69 log_mustnot diff -q /etc/passwd $tempfile
70 log_must rm $tempfile
77 get_xattr passwd $testfile >$tempfile
78 log_must diff -q /etc/passwd $tempfile
79 log_must rm $tempfile
/freebsd/contrib/dialog/samples/
H A Dreport-tempfile8 echo "Result: `cat "$tempfile"`";;
12 echo "Help pressed: `cat "$tempfile"`";;
16 echo "Item-help button pressed: `cat "$tempfile"`";;
20 if test -s "$tempfile" ; then
21 cat "$tempfile"
H A Dsetup-tempfile5 tempfile=`(tempfile) 2>/dev/null` || tempfile=/tmp/test$$
6 trap "rm -f $tempfile" 0 $SIG_NONE $SIG_HUP $SIG_INT $SIG_QUIT $SIG_TERM
H A Dtextbox-help6 . ./setup-tempfile
11 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
16 --textbox "$tempfile" 22 77
H A Dtextbox36 . ./setup-tempfile
11 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
16 --textbox "$tempfile" 22 77
H A Dtextbox-both6 . ./setup-tempfile
11 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
17 --textbox "$tempfile" 22 77
H A Dinputbox6 . ./setup-tempfile
16 Try entering your name below:" 16 51 2> $tempfile
20 . ./report-tempfile
H A Dinputbox26 . ./setup-tempfile
16 Try entering your name below:" 16 51 2> $tempfile
20 . ./report-tempfile
H A Dmenubox6 . ./setup-tempfile
23 "MS-DOS" "Microsoft DOS" 2> $tempfile
27 . ./report-tempfile
H A Dchecklist97 . ./setup-tempfile
9 $DIALOG "$@" --file checklist9.txt 2>$tempfile
13 . ./report-tempfile
H A Dpassword6 . ./setup-tempfile
16 Try entering your name below:" 16 51 2> $tempfile
20 . ./report-tempfile
H A Dbuildlist6 . ./setup-tempfile
16 "6" "Item number 6" "on" 2> $tempfile
20 . ./report-tempfile
H A Dinputbox36 . ./setup-tempfile
17 Try entering your name below:" 16 51 2> $tempfile
21 . ./report-tempfile
H A Dpassword16 . ./setup-tempfile
17 Try entering your name below:" 16 51 2> $tempfile
21 . ./report-tempfile
H A Dinputbox-extra6 . ./setup-tempfile
17 Try entering your name below:" 16 51 2> $tempfile
21 . ./report-tempfile
H A Dinputbox-help6 . ./setup-tempfile
17 Try entering your name below:" 16 51 2> $tempfile
21 . ./report-tempfile
H A Dinputbox16 . ./setup-tempfile
19 Try entering your name below:" 0 0 2> $tempfile
23 . ./report-tempfile
H A Dinputbox57 . ./setup-tempfile
17 Try entering your name below:" 16 51 4> $tempfile
21 . ./report-tempfile
/freebsd/usr.sbin/periodic/etc/daily/
H A D450.status-security27 if tempfile=`mktemp ${TMPDIR:-/tmp}/450.status-security.XXXXXX`
29 periodic security > $tempfile || rc=3
30 if [ -s "$tempfile" ]; then
31 cat "$tempfile"
34 rm -f "$tempfile"
/freebsd/usr.sbin/periodic/etc/monthly/
H A D450.status-security27 if tempfile=`mktemp ${TMPDIR:-/tmp}/450.status-security.XXXXXX`
29 periodic security > $tempfile || rc=3
30 if [ -s "$tempfile" ]; then
31 cat "$tempfile"
34 rm -f "$tempfile"
/freebsd/usr.sbin/periodic/etc/weekly/
H A D450.status-security27 if tempfile=`mktemp ${TMPDIR:-/tmp}/450.status-security.XXXXXX`
29 periodic security > $tempfile || rc=3
30 if [ -s "$tempfile" ]; then
31 cat "$tempfile"
34 rm -f "$tempfile"
/freebsd/contrib/elftoolchain/elfcopy/
H A Darchive.c67 char *tempfile; in process_ar_obj() local
73 cleanup_tempfile(tempfile); in process_ar_obj()
86 cleanup_tempfile(tempfile); in process_ar_obj()
90 cleanup_tempfile(tempfile); in process_ar_obj()
98 cleanup_tempfile(tempfile); in process_ar_obj()
102 cleanup_tempfile(tempfile); in process_ar_obj()
107 cleanup_tempfile(tempfile); in process_ar_obj()
109 tempfile); in process_ar_obj()
112 cleanup_tempfile(tempfile); in process_ar_obj()
117 free(tempfile); in process_ar_obj()
[all …]
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/
H A Dprepare.py65 self.tempfile = os.path.join(self.tempdir, os.path.normpath(self.itemfile))
69 f.write('{0}: {1}\n'.format(self.packfile, self.tempfile))
73 f.write('{0}: {1}\n'.format(self.tempfile, self.cachefile))
89 self.tempfile = os.path.join(self.tempdir, os.path.normpath(self.itemfile))
93 f.write('{0}: {1}\n'.format(self.packfile, self.tempfile))
97 f.write('{0}: {1}\n'.format(self.tempfile, self.cachefile))
112 self.tempfile = os.path.join(self.tempdir, 'libsodium.so')
129 f.write('{0}: {1}\n'.format(self.packfile, self.tempfile))
133 f.write('{0}: {1}\n'.format(self.tempfile, self.cachefile))
153 f.write('{0}: {1}\n'.format(self.packfile, self.tempfile))
[all …]
/freebsd/stand/common/
H A Dnewvers.sh32 tempfile=$(mktemp tmp.XXXXXX) || exit
33 trap "rm -f $tempfile" EXIT INT TERM
54 cat > $tempfile <<EOF
58 mv $tempfile vers.c
/freebsd/contrib/expat/
H A Dfix-xmltest-log.sh37 tempfile="$(mktemp)"
49 "${filename}" > "${tempfile}"
50 mv "${tempfile}" "${filename}"

12345