sh script to run multiple files in multiple languages
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
Is it possible to have an sh script that would run a python file, run a command ruby file and run a ruby sonicPI file?
What would this look like?
Thank you!
Adi
shell-script python ruby
add a comment |Â
up vote
1
down vote
favorite
Is it possible to have an sh script that would run a python file, run a command ruby file and run a ruby sonicPI file?
What would this look like?
Thank you!
Adi
shell-script python ruby
Could you clarify what the context/goal is? ie do you just want three scripts run in a row? or side-by-side? Do you want them run completely in the background where no output is visible?
â Jason Rush
Dec 5 '17 at 21:22
sounds for me to run multi command one by one which is completely duplicated question.
â Ã±ÃÂñýàñüÃÂÃÂùcñ÷
Dec 6 '17 at 0:11
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Is it possible to have an sh script that would run a python file, run a command ruby file and run a ruby sonicPI file?
What would this look like?
Thank you!
Adi
shell-script python ruby
Is it possible to have an sh script that would run a python file, run a command ruby file and run a ruby sonicPI file?
What would this look like?
Thank you!
Adi
shell-script python ruby
asked Dec 5 '17 at 21:18
ADI
82
82
Could you clarify what the context/goal is? ie do you just want three scripts run in a row? or side-by-side? Do you want them run completely in the background where no output is visible?
â Jason Rush
Dec 5 '17 at 21:22
sounds for me to run multi command one by one which is completely duplicated question.
â Ã±ÃÂñýàñüÃÂÃÂùcñ÷
Dec 6 '17 at 0:11
add a comment |Â
Could you clarify what the context/goal is? ie do you just want three scripts run in a row? or side-by-side? Do you want them run completely in the background where no output is visible?
â Jason Rush
Dec 5 '17 at 21:22
sounds for me to run multi command one by one which is completely duplicated question.
â Ã±ÃÂñýàñüÃÂÃÂùcñ÷
Dec 6 '17 at 0:11
Could you clarify what the context/goal is? ie do you just want three scripts run in a row? or side-by-side? Do you want them run completely in the background where no output is visible?
â Jason Rush
Dec 5 '17 at 21:22
Could you clarify what the context/goal is? ie do you just want three scripts run in a row? or side-by-side? Do you want them run completely in the background where no output is visible?
â Jason Rush
Dec 5 '17 at 21:22
sounds for me to run multi command one by one which is completely duplicated question.
â Ã±ÃÂñýàñüÃÂÃÂùcñ÷
Dec 6 '17 at 0:11
sounds for me to run multi command one by one which is completely duplicated question.
â Ã±ÃÂñýàñüÃÂÃÂùcñ÷
Dec 6 '17 at 0:11
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
#!/bin/sh
python /path/to/script.py
ruby /path/to/script.rb
ruby /path/to/otherscript.rb
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
#!/bin/sh
python /path/to/script.py
ruby /path/to/script.rb
ruby /path/to/otherscript.rb
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
add a comment |Â
up vote
1
down vote
accepted
#!/bin/sh
python /path/to/script.py
ruby /path/to/script.rb
ruby /path/to/otherscript.rb
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
#!/bin/sh
python /path/to/script.py
ruby /path/to/script.rb
ruby /path/to/otherscript.rb
#!/bin/sh
python /path/to/script.py
ruby /path/to/script.rb
ruby /path/to/otherscript.rb
answered Dec 5 '17 at 22:00
DopeGhoti
40.6k54979
40.6k54979
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
add a comment |Â
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
Oh it's that simple! Thank you so much!
â ADI
Dec 7 '17 at 22:13
add a comment |Â
Â
draft saved
draft discarded
Â
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f409039%2fsh-script-to-run-multiple-files-in-multiple-languages%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Could you clarify what the context/goal is? ie do you just want three scripts run in a row? or side-by-side? Do you want them run completely in the background where no output is visible?
â Jason Rush
Dec 5 '17 at 21:22
sounds for me to run multi command one by one which is completely duplicated question.
â Ã±ÃÂñýàñüÃÂÃÂùcñ÷
Dec 6 '17 at 0:11