Re: [R-SIG-Mac] Finding "bash" and "mv" on my hard drive?

2020-01-17 Thread Spencer Graves
> Sys.which(c("bash", "mv"))    bash  mv "/bin/bash"   "/bin/mv"   Thanks.   It answers the question I asked, but sadly doesn't solve the problem.   Thanks again,   Spencer Graves On 2020-01-17 17:28, Bert Gunter wrote: > As a minor note, Sys.which is

[R-SIG-Mac] Finding "bash" and "mv" on my hard drive?

2020-01-17 Thread Spencer Graves
Hello:   How can I find the version of "bash" and "mv" that are used by "R CMD check" under macOS 10.15.2 Catalina?   I ask, because my "Bitdefender for Mac" has been interrupting "R CMD check" for a couple of years now, saying, "Bitdefender Safe Files blocked a new process, bash,

Re: [R-SIG-Mac] Finding "bash" and "mv" on my hard drive?

2020-01-17 Thread Bob Rudis
R does not ship bash or bin with the program distribution on macOS. It uses the ones that come along for the ride with the system (which will be interesting when Apple removes bash completely in 10.16). If you've used MacPorts or Homebrew, you may have installed version of those shells/tools

Re: [R-SIG-Mac] Finding "bash" and "mv" on my hard drive?

2020-01-17 Thread Bert Gunter
As a minor note, Sys.which is vectorized, so Sys.which(c("bash", "mv")) will do. Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Fri, Jan 17, 2020 at 3:20