1
0
mirror of https://github.com/msberends/AMR.git synced 2024-12-26 06:06:12 +01:00

Update clipboard.R

This commit is contained in:
MS Berends 2018-03-29 14:56:40 +02:00 committed by GitHub
parent e2a5202b69
commit f1dbed6fcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ clipboard_import <- function(sep = '\t',
} else {
# use xclip package
check_xclip()
file <- pipe("xclip -o -selection c", "r")
file <- pipe("xclip -o", "r")
on.exit(close(file))
}