Displaying 1 result from an estimated 1 matches for "witless".
Did you mean:
  wirless
  
2007 Jan 04
1
littler+dget+stdin -> segmentation fault
Hi, I'm trying to write a series of pipes using littler, and I get the
following behaviour: Sorry if I'm just doing something witless, I'm new to
R. I'm using the latest versions from debian testing (2.4.0 and 0.0.8).
$ r -e 'a<-dget(file=stdin()); print(a)'
?list(a=2)
Segmentation fault
In R itself this works:
> dget(file=stdin())
?list(a=2)
$a
[1] 2
As do (from the command line):
$ cat >foo
list(a...