Interactive app using radio button.

Hey there,
I’m trying to do some experiments with shiny app, recently I came across with this situation, want to create an interactive GUI using shiny widgets for that I want to run a Linux system commands within shiny app using radio button widget. In detail, selecting a listed item in radio-button widget should run some Linux command. Is that possible? If yes can anyone help me with that.?

Note : Even after one month still I'm a newbie

Thanks
VR

You can run system commands from R with system() and system2() functions

system2("date")
# mar jul 16 22:20:56 UTC 2019
1 Like

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.