2
0
Fork 0
This commit is contained in:
Ducky 2023-08-25 01:26:15 +01:00
parent b057929c56
commit 5d67f27a7e
2 changed files with 11 additions and 2 deletions

View file

@ -4,6 +4,13 @@ function container_exec() {
podman_exec $@
}
function create_tmp_file() {
name="$1"
tmp_path="/tmp/$@_$(date +%s)_$name"
touch "$tmp_path"
echo "$tmp_path"
}
function die() {
say error "$@"
exit 255