Say I have a python program and I need to run it via the command line. I know in Python I `import` sys and os, which then allows me to do
```
cmdLine = "python program arguement"
os.system(cmdLine)
```
However, how do I achieve this in Ruby so I can put it into a Rails app?
I’ll leave this here for anyone wondering the same question, I think this is the answer
[https://stackoverflow.com/questions/3159945/running-command-line-commands-within-ruby-script](https://stackoverflow.com/questions/3159945/running-command-line-commands-within-ruby-script)