Issue
This Content is from Stack Overflow. Question asked by jgarces
I’m running R within a HPC and I’d like to be notified when a long running process is finished (within R terminal, not as a Rscript).
I know the way to do it is through triggers but I have no idea how to… any idea, please?
Solution
It’s simpler what I thought, but as anyone didn’t answer, here there’s my (posible) solution:
- Write a simple function called fin():
fin <- function(){print("fin")}
- Then go to Preferences > Profiles > Advanced > Triggers and add a new trigger based on function’s output: Regular expression =
\[1\] "fin"
, Action = Post Notification… et voilá!
This Question was asked in StackOverflow by jgarces and Answered by jgarces It is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.