Clear Filters
Clear Filters

Run linux command in background from matlab

9 views (last 30 days)

I want to run linux command from matlab Pl help

Accepted Answer

Shivam
Shivam on 9 Jul 2023
Hi Jay, for running linux command in background from matlab, you can use system("your_command &") , & after the command ensure that's the command runs on background.
  3 Comments
Walter Roberson
Walter Roberson on 9 Jul 2023
getenv('SHELL')
ans = '/bin/bash'
system('echo $0')
/bin/bash
ans = 0
So at least on MATLAB Online, any command you send to system() is processed as a bash command, and can use full syntax for I/O redirection and any multiple-process support.

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!