Ben
Ben

Reputation: 125

How to reminds me when the program of R finished in Linux?

I always use computer of campus to run R program. Every time, I always check it in terminal (I use ssh to connect to that computer) again and again to see whether the program is finished or not. Is there a way that the computer which is running my program can reminds me (e.g. send email to me) when the program is finished?

Upvotes: 1

Views: 109

Answers (1)

yossico
yossico

Reputation: 3521

You can write a BASH script that runs your R task and send you Email after it finish.

to send Email in bash see here: https://stackoverflow.com/a/8260923/1726419

Upvotes: 2

Related Questions