¿Es posible atrapar la salida / retorno de una función? Para un programa que podría hacer
trap -- "clean_this" EXIT
Eso ejecutaría la función. clean_this
cuando el programa sale.
Me gustaría hacer algo por el estilo al salir de una función.
function myfunc() {
echo "I'm a function"
}
myfunc &
wait $!
Ejecuto la función en un subshell, y me gustaría atrapar su salida / retorno. ¿Es eso posible?
EDITAR1
Aquí está mi propósito
Tengo un script para administrar los archivos temporales:
cat tempfiles.sh
## List of temp files
tmp_tmp_files=()
## Adds a file to the list of temp files
function tmp_add_file() {
tmp_tmp_files+=("$1")
}
## Resets the list of temp files
function tmp_reset_files() {
tmp_tmp_files=()
}
## Removes the list of temp files
function tmp_rm_all() {
rm -f "${tmp_tmp_files[@]}"
}
## Removes all temp files on exit and sigint
trap "tmp_rm_all" EXIT SIGINT
Aquí está mi guión principal:
cat mscript.sh
source tempfiles.sh
## ## Creates a temp file and writes in it
mfunc() {
local tempfile=$(mktemp)
tmp_add_file $tempfile
echo "something" >> $tempfile
echo "($BASHPID) - tempfiles: ${tmp_tmp_files[@]}"
}
## Creates a temp file in main shell
mfunc
## Creates a temp file in a subshell
(mfunc)
Llamo al guión principal:
$ bash mscript.sh
(92250) - tempfiles: /var/folders/9k/h6hn75090_n8z0kythwmwqp96_0t2m/T/tmp.oRlUxEBj
(92254) - tempfiles: /var/folders/9k/h6hn75090_n8z0kythwmwqp96_0t2m/T/tmp.oRlUxEBj /var/folders/9k/h6hn75090_n8z0kythwmwqp96_0t2m/T/tmp.s1iIvtpq
Reviso los archivos temporales:
$ cat /var/folders/9k/h6hn75090_n8z0kythwmwqp96_0t2m/T/tmp.oRlUxEBj
cat: /var/folders/9k/h6hn75090_n8z0kythwmwqp96_0t2m/T/tmp.oRlUxEBj: No such file or directory
$ cat /var/folders/9k/h6hn75090_n8z0kythwmwqp96_0t2m/T/tmp.s1iIvtpq
something
Los archivos temporales declarados en el subshell
se pierden de la lista al salir del programa. Me gustaría tenerlos eliminados idealmente al final de la función. O tengo que eliminarlos específicamente antes de abandonar la función, es fácil y me cuesta una línea más:
mfunc() {
local tempfile=$(mktemp)
tmp_add_file $tempfile1
echo "something" >> $tempfile
echo "tempfiles: ${tmp_tmp_files[@]}"
## Process things...
rm $tempfile1
}
Pero me gustaría saber si hay una manera elegante de tenerlos (los archivos temporales creados en el subshells
) eliminado automáticamente, como hago con trap
s al salir del programa.
Entonces mi pregunta es: ¿es posible hacerlo? ¿Cuáles podrían ser algunas alternativas?
myfunc
llamadaclean_this
al final. O invocarlos como{ myfunc ; clean_this ; } &
. ¿Realmente necesitas una trampa?