Re: Getting a program to inform you when it's done



Oh, btw, here's how to do local Windows beeping (not that it helps me
much as my solver needs to run in Linux...)

Thought I'd post it here anyway.

program beep

INTEGER(4) frequency, duration
frequency = 1000
duration = 1000
CALL BEEPQQ(frequency, duration)

end program beep

Also, with (1) in the previous post, the Linux beep command does exist
(although I am not there to confirm it!)

asdf@remote:~/test> beep
asdf@remote:~/test>

.