Message-ID: <20191225204437.47f141c4@trisector>
Date: 2019-12-25T17:44:37Z
From: Ivan Krylov
Subject: R CMD Batch on Windows and use of the ampersand
In-Reply-To: <CACxE24kG_BF-bPrB+zk6J08=ig-_oRd2vWJw2ibY-+t7urdHUQ@mail.gmail.com>
On Wed, 25 Dec 2019 09:13:28 -0800
Erin Hodgess <erinm.hodgess at gmail.com> wrote:
> We know that
>
> R CMD BATCH infile outfile &
>
> On Linux or Mac will let you continue interactively from the command
> line.
This is a property of the command line shell being used, not of R CMD
BATCH itself. One way to do the same on Windows would be to use the
start command [*]:
start "" R CMD BATCH infile outfile
If a new window being created is a problem for you, try start "" /MIN
or start "" /B, but I am not sure it would help.
--
Best regards,
Ivan
[*] https://ss64.com/nt/start.html