Last active
April 12, 2024 17:59
-
-
Save malcolmgreaves/11d846216a055f4f5d78ab740e639332 to your computer and use it in GitHub Desktop.
Reusable bash functions for creating a local temporary directory with rm exit trap.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
#################################################################### | |
# | |
# Reusable functions for creating a local temporary directory: | |
# - [mk_tmp_dir] create local directory with unique name | |
# - [cleanup] add exit trap to rm this directory | |
# | |
# Use is always in the 2-call pattern: | |
# D=$(mk_tmp_dir) | |
# trap "cleanup $D" EXIT | |
# | |
cleanup() { | |
rm -rf "${1}" | |
} | |
mk_tmp_dir() { | |
# https://stackoverflow.com/a/10823731/362021 | |
local UUID=$(hexdump -n 16 -v -e '/1 "%02X"' /dev/urandom) | |
local TEMP_INSTALL="$(pwd)/temp_install_space-${UUID}" | |
mkdir "${TEMP_INSTALL}" | |
echo "${TEMP_INSTALL}" | |
} | |
#################################################################### | |
# Example use | |
name=$(mk_tmp_dir) | |
trap "cleanup $name" EXIT | |
echo "Local temporary directory: $name" | |
echo "writing!" | |
echo "hello world!" > "${name}/hi" | |
tree "${name}" | |
s=10 | |
printf "sleep %ds\n" $s | |
sleep $s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example run with normal exit --
Run and let program exit normally after
sleep
:Directory is gone after program exits normally: