幾種執行shell的方法

來源:互聯網
上載者:User

幾種執行shell的方法

介紹一下python執行shell命令的四種方法:

1、os模組中的os.system()這個函數來執行shell命令

注,這個方法得不到shell命令的輸出。

2、popen()#這個方法能得到命令執行後的結果是一個字串,要自行處理才能得到想要的資訊。

這樣得到的結果與第一個方法是一樣的。

3、commands模組#可以很方便的取得命令的輸出(包括標準和錯誤輸出)和執行狀態位

commands.getstatusoutput(cmd)返回(status,output)

commands.getoutput(cmd)只返回輸出結果

commands.getstatus(file)返回ls -ld file 的執行結果字串,調用了getoutput,不建議使用這個方法。

4、subprocess模組

使用subprocess模組可以建立新的進程,可以與建立進程的輸入/輸出/錯誤管道連通,並可以獲得建立進程執行的返回狀態。使用subprocess模組的目的是替代os.system()、os.popen()、commands.等舊的函數或模組。

import subprocess   1、subprocess.call(command, shell=True)    #會直接列印出結果。   2、subprocess.Popen(command, shell=True) ###也可以是     subprocess.Popen(command, stdout=subprocess.PIPE, shell=True)  #這樣就可以輸出結果了。 

如果command不是一個可執行檔,shell=True是不可省略的。

shell=True意思是shell下執行command

這四種方法都可以執行shell命令。

pysftp 友好的命令執行與互動工具

  
  1. import pysftp with pysftp.Connection('hostname', username='me', password='secret') as sftp: with sftp.cd('public'):
  2. # temporarily chdir to public
  3. sftp.put('/my/local/filename') # upload file to public/ on remote
  4. sftp.get('remote_file')
  5. # get a remote file

所有方法

  

  
  1. dir(pysftp.Connection) ['class', 'del', 'delattr', 'dict', 'doc', 'enter', 'exit', 'format',
  2. 'getattribute', 'hash', 'init', 'module', 'new', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof',
  3. 'str', 'subclasshook', 'weakref', 'set_authentication', 'set_logging', 'set_username', 'sftp_connect', '_start_transport',
  4. 'active_ciphers', 'active_compression', 'cd', 'chdir', 'chmod', 'chown', 'close', 'cwd', 'execute', 'exists', 'get', 'get_d',
  5. 'get_r', 'getcwd', 'getfo', 'isdir', 'isfile', 'lexists', 'listdir', 'listdir_attr', 'logfile', 'lstat', 'makedirs', 'mkdir',
  6. 'normalize', 'open', 'put', 'put_d', 'put_r', 'putfo', 'pwd', 'readlink', 'remote_server_key', 'remove', 'rename', 'rmdir',
  7. 'security_options', 'sftp_client', 'stat', 'symlink', 'timeout', 'truncate', 'unlink', 'walktree']
https://bitbucket.org/dundeemt/pysftp 官方連結

https://pypi.python.org/pypi/pysftp/ 下載

http://pysftp.readthedocs.io/en/release_0.2.9/ 文檔中心

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.