When I exit the interactive R shell, it displays an annoying prompt every time:
> > Save workspace image? [y/n/c]: n
I\'m always answering \"no\" to it
You can create an alias for the R command:
using bash: alias R='R --no-save'
alias R='R --no-save'
using csh: alias R 'R --no-save'
alias R 'R --no-save'