Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
social_monad
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
social_monad
12y ago
Simple solution in R: > '%+%' <- get( '+') > '+' <- function( e1, e2) 1 %+% e1 %+% e2 > 2+2 [1] 5 Regards
2.
▲
by
social_monad
13y ago
# this command fails to explain: : abc $(xclock) def
3.
▲
by
social_monad
13y ago
look at: man utf8 man syscalls ... and the best hint imo to process malformed filenames per 'find -print0' is: find ... -print0 | { while read -d $'\0' fil ... # use variable fil } Regards