各種編譯語言調用shell命令,如何得到輸出結果?

來源:互聯網
上載者:User

(1) Python //前面的文章中已經提到過了
http://blog.chinaunix.net/u/12325/showart_217175.html

兩種方法,一種是且Popen.output = subprocess.Popen(['ls','-l'],stdout=subprocess.PIPE,shell=True).commun
icate()
print output[0] 

另外一種則可返回狀態與調用的shell命令的輸出結果
>>> import commands
>>> status, output = commands.getstatusoutput('ls -l')

(2) Perl //這個相比之下就簡單多了
$out=`shell command`

(3) Shell
最簡單的方法是這樣:
    out=`shell command`
或者
    out=$(shell command)
不過要注意的是,如果shell command的輸出結果為多行,而這樣放進變數中的時候,預設的echo $out是不輸出換行的(參看IFS相關的文檔),echo "$out"就可以了。

(4) C
     #include <stdlib.h>
     int system(const char *string);

當調用system("command");的時候,執行結果是打在標準輸出的。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.