首页 > 代码库 > 脚本的对比
脚本的对比
shell & python 脚本的对比
下面是收集系统信息的脚本,对比一下,shell和python的区别。
#!/bin/bash # A system information gathering script function uname_func () { UNAME="uname -a" printf "Gathering system information with the $UNAME command: \n\n" $UNAME } function disk_func () { DISKSPACE="df -h" printf "Gatheringg system information with the $DISKSPACE command: \n\n" $DISKSPACE } function main () { uname_func disk_func } main
下面这个是python的脚本,和shell脚本实现了相同的功能
#!/usr/bin/env python # A System Information Gathering Script import subprocess #Command 1 def uname_func (): uname = "uname" uname_arg = "-a" print "Gathering system information with %s command:\n" % uname subprocess.call([uname,uname_arg]) #Command 2 def disk_func(): diskspace = "df" diskspace_arg = "-h" print "Gatheringg diskspace information %s command:\n" % diskspace subprocess.call([diskspace,diskspace_arg]) #Main function that call other functions def main(): uname_func() disk_func() main()
看完之后,可能觉得连个脚本有很多相似之处。创建了2个函数,然后通过main函数进行调用。其实,最大的区别么过于shell和python对函数的应用在格式上有点不同,请牢记函数格式!!!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。