Explore
Connect
Documentation
Snippets
Log in
Sign up
1
2
3
4
5
6
7
# change directory to home directory
setwd(
"~"
)
# display all files in current directory
dir(path =
"."
, all.files =
TRUE
)
# execute bash command ls -al (in Linux)
system(
"ls -al"
)
Enter to Rename, Shift+Enter to Preview
Run