blob: acf32dd5c99adb1e47dd2e1cc6babb366f800540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
AK_TEMP="$(mktemp -d aktmp-XXXXXXX)"
logit(){
ak-logthis "<$PROGRAM>" "$1" "$2"
}
if [ ! -d "$AK_TEMP" ]
then
logit "[ERROR]" "Could not make $AK_TEMP directory to work in"
echo "Could not make $AK_TEMP directory to work in"
exit 1
fi
logit "[INFO]" "$AK_TEMP created successfully"
echo "$AK_TEMP"
|