Can read .sh file data?

조회 수: 5 (최근 30일)
min wong
min wong 2018년 2월 10일
답변: Walter Roberson 2018년 2월 10일
I want to ask a simple question,but I just can't solve it.
I have a test.sh file and a Untitled.m file.
How to use Untitled.m file read data from test.sh file?
What command should I use?
Thank you.

답변 (1개)

Walter Roberson
Walter Roberson 2018년 2월 10일
Do you mean that test.sh is a K-Shell script that is to be executed to produce output and that you want to read the output in Untitled.m ? If so then provided that you are using Mac or Linux, or you have installed the Linux subsystem on Windows 10 (not available for earlier Windows), then use
[status, result] = system('./test.sh');
and then result will be a character vector with embedded newlines which holds the output text; you can then use sscanf() or textscan() or regexp() or character operations to extract information from that character vector.

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by