1. 程式人生 > >shell for 循環

shell for 循環

col www bash 方式 spa one color bsp 執行

test.sh

#!/bin/bash
for str in "C語言" "http://www.bilibili.com" "成立7年了" "日IP數萬"
do
    echo $str >>demo.txt  #將輸入結果以追加的方式重定向到文件
done

執行

sudo chmod +x test.sh
./test.sh
cat demo.txt

輸出

C語言
http://www.bilibili.com
成立7年了
日IP數萬

shell for 循環