フィルターのクリア

How to get pid of an external executable run in linux?

1 回表示 (過去 30 日間)
Sravan Kumar Kanchari Bavajigari
Sravan Kumar Kanchari Bavajigari 2022 年 12 月 29 日
編集済み: Stefanie Schwarz 2024 年 2 月 23 日
Hi,
I would like to run an exeternal executable in matlab in linux. I would like to get the pid of the process.
For example, I can run an external executable using
[status,cmdout] = system('.\myexecutable.exe > myoutput.txt &');
I would like to get the pid of .\myexecutable.exe > myoutput.txt &
I am open to running the executable using functions other than system as well. Please note that I am using MATLAB in Linux. Thank you.

回答 (1 件)

Bhavana Sapparapu
Bhavana Sapparapu 2023 年 1 月 4 日
編集済み: Stefanie Schwarz 2024 年 2 月 23 日
Hi Sravan,
I understand that you are trying to run an external executable/process on MATLAB and find its process ID from MATLAB itself on a Linux platform.
At present, there is no direct MATLAB command or function to obtain the PID of a process. But you can try the following workaround that utilizes the 'ps' shell command:
>> system('process name & ps')
Following is the screenshot of the example I have tried on my end:
Also, there is third party command called the 'pslist' command for Linux platforms.
Hope this helps!

カテゴリ

Help Center および File ExchangePID Controller Tuning についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by