Koveart, funciono lo de incluirlas dentro de un shell y llamarlas.
En un SunOS 5.9 funciono de la siguiente manera:
Código:
#!/usr/bin/ksh
. /example/f_utils.sh
echo "Prueba" | mailx -s "Prueba" `f_mail UX`
y dentro de f_utils.sh tengo:
Código:
/example># cat f_utils.sh
#!/usr/bin/ksh
f_mail () {
egrep "$1" /spool/mails.txt | nawk '{ print $NF }' | sort -u
}
/example>#
Para mas info, me ayudo mucho buscar
how use external functions in scripts shell the unix.
external functions
Saludos, Mario.