jmadin / scaf

An R package for project scaffolding
1 stars 0 forks source link

Better system calls #1

Open dfalster opened 7 years ago

dfalster commented 7 years ago

The system2 function reputedly gives more reliable system calls across platform. Also @richfitz wrote this function (see call_system) for making calls, which might be helpful

richfitz commented 7 years ago

system2 is base (and uses system) under the hood - very recommended over system.

If you want even more control:

Both excellent