Run Batch File from R

aL_eX

I've found a lot of answers on how to run R from a Batch file, but nothing about running a Batch File from R. I know one way to do this is to use system, system2 or shell, but these methods wait for process in the Windows Command Prompt to finish before R accepts another input. I want to run a Batch File which calls a console application that runs indefinitely, and then allow R to do other things. Any help would be greatly appreciated.

G5W

The help page ?shell says how to do it. Just run

shell("MyScript.bat",   wait=FALSE)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

R Run knitr from a batch-file (windows)

From Dev

How to run batch file using Runas command from a batch file

From Dev

Run batch file from Java code

From Java

How to run a PowerShell script from a batch file

From Dev

Run batch file on usb from different drive

From Dev

Run parameters in a Powershell script from a batch file

From Dev

how to run batch file from java code?

From Dev

Run parameters in a Powershell script from a batch file

From Dev

How to run a batch file from Jenkins

From Dev

Run an exe from batch file with parameters

From Dev

batch to run php file from command prompt

From Dev

How to run a batch file from an SSRS 2008 R2 report by using a code?

From Dev

Run cmd command work but run from batch file doesn't

From Dev

Search for latest version of jar file in folder and run it from batch file

From Dev

batch file to copy files to C: from USB then run another batch file from c:\temp

From Dev

Batch File Run VBScript

From Dev

Run a shortcut with a batch file

From Dev

Run a shortcut with a batch file

From Dev

How to run this "batch" file?

From Dev

Batch file does not run

From Java

In a CMD batch file, can I determine if it was run from powershell?

From Dev

Change current working directory from batch file and run script

From Dev

How to run a batch file as administrator from a java program

From Dev

Wait for multiple applications run asynchronously from batch file to finish

From Dev

Run a batch file from Task Scheduler is not working with a java command

From Dev

Windows startup - how to run a program as administrator from a batch file

From Dev

How to launch MSTest and run a command from batch file?

From Dev

Run browser with absolute local path from batch file

From Dev

How to run audio from a batch file without any windows showing

Related Related

  1. 1

    R Run knitr from a batch-file (windows)

  2. 2

    How to run batch file using Runas command from a batch file

  3. 3

    Run batch file from Java code

  4. 4

    How to run a PowerShell script from a batch file

  5. 5

    Run batch file on usb from different drive

  6. 6

    Run parameters in a Powershell script from a batch file

  7. 7

    how to run batch file from java code?

  8. 8

    Run parameters in a Powershell script from a batch file

  9. 9

    How to run a batch file from Jenkins

  10. 10

    Run an exe from batch file with parameters

  11. 11

    batch to run php file from command prompt

  12. 12

    How to run a batch file from an SSRS 2008 R2 report by using a code?

  13. 13

    Run cmd command work but run from batch file doesn't

  14. 14

    Search for latest version of jar file in folder and run it from batch file

  15. 15

    batch file to copy files to C: from USB then run another batch file from c:\temp

  16. 16

    Batch File Run VBScript

  17. 17

    Run a shortcut with a batch file

  18. 18

    Run a shortcut with a batch file

  19. 19

    How to run this "batch" file?

  20. 20

    Batch file does not run

  21. 21

    In a CMD batch file, can I determine if it was run from powershell?

  22. 22

    Change current working directory from batch file and run script

  23. 23

    How to run a batch file as administrator from a java program

  24. 24

    Wait for multiple applications run asynchronously from batch file to finish

  25. 25

    Run a batch file from Task Scheduler is not working with a java command

  26. 26

    Windows startup - how to run a program as administrator from a batch file

  27. 27

    How to launch MSTest and run a command from batch file?

  28. 28

    Run browser with absolute local path from batch file

  29. 29

    How to run audio from a batch file without any windows showing

HotTag

Archive