shell 数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 数组相关的知识,希望对你有一定的参考价值。
[[email protected] ~]# python tt.py server1 server2 [[email protected] ~]# bash a.sh server01 server02
[[email protected] ~]# cat a.sh #!/bin/bash server="server01 server02" for i in ${server} do echo ${i} done [[email protected] ~]# cat tt.py #!/usr/bin/env pyhton #encoding:utf-8 def do(): arry = ["server1","server2"] for i in arry: print(i) if __name__ == "__main__": do() [[email protected] ~]#
本文出自 “砖家博客” 博客,请务必保留此出处http://wsxxsl.blog.51cto.com/9085838/1953603
以上是关于shell 数组的主要内容,如果未能解决你的问题,请参考以下文章