Is there a way to automatically e-mail after a long script is finished?

2.1k Views Asked by At

I am trying to run a long bash script overnight to get some data. I wanted to include a script that would automatically e-mail me the files after the scripts are completed. Is there a way to do this using mutt? I want something like below:

sh atoms.sh  
sh angles.sh
mutt -a atoms.dat angles.dat -- [e-mail adress]

Any takers?

EDITS: If there's any other way to achieve this -- "sending multiple attachment to an e-mail address after scripting is finished" -- I'd be very appreciated.

2

There are 2 best solutions below

1
On
sh atoms.sh 
sh angles.sh 
mutt -s "data set from atoms.sh" [email address] < ./atom.dat 
mutt -s "data set from angles.sh" [email address] < ./angles.dat 

will disable the terminal interaction and send e-mails after the jobs are finished

1
On

-a file [...] Attach a file to your message using MIME. To attach multiple files, separating filenames and recipient addresses with "--" is mandatory, e.g. mutt -a img.jpg *.png -- addr1 addr2.

$ $( sh atoms.sh; sh angles.sh ) &&  mutt -s "man mutt" \
  -a grab.sh  raptor.mpd.ogg.m3u  scripts/bussorakel  \
 -- [email protected] < /dev/null

alternatively, you have:

$(sh atoms.sh; sh angles.sh ) & FOR=$!
wait $FOR 

mutt -s "last command done, sending email" (...)

the received mail: