Answers for "bash clean-up code 2"

0

bash clean-up code 2

#!/bin/bash
scratch=$(mktemp -d -t tmp.XXXXXXXXXX)
function finish {
  rm -rf "$scratch"
}
trap finish EXIT
Posted by: Guest on September-23-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language