summaryrefslogtreecommitdiff
path: root/shell-temp.sh
blob: 7fd1d52780f419c6b12f02f90dcca30c1571e76f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -eu

cleanup() {
    rm -rf "$tempdir"
}


tempdir="$(mktemp -d)"
trap cleanup EXIT


echo foo > "$tempdir/foo.txt"
echo "$tempdir"