Newbie R question PART2
Dieter Menne wrote:
Tena Sakai <tsakai <at> gallo.ucsf.edu> writes:
I learned 3 new tricks. (Not bad for a newbie?)
$ R --silent --no-save < barebone.R
$ R --quiet --no-save < barebone.R
$ R --slave < barebone.R
And don't forget R --vanilla which I like most because of the taste.
once we talk about preferences, here's the version which i like most
because of (a) least typing, (b) the non-pompous little r:
r <<< "cat('foo\n')"
# foo
vQ