首页 > 系统服务 > 详细

shell for 循环演示

时间:2019-08-23 23:36:05      阅读:120      评论:0      收藏:0      [点我收藏+]

 

test.sh

#!/bin/bash
for skill in Ada Coffe Action Java; do
    echo "I am good at ${skill}Script"
done

输出

bogon:Desktop macname$ ./test.sh 
I am good at AdaScript
I am good at CoffeScript
I am good at ActionScript
I am good at JavaScript

 

 

参考:

https://runoob.com/linux/linux-shell-variable.html

 

shell for 循环演示

原文:https://www.cnblogs.com/sea-stream/p/11403080.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!