Linux学习记录(五):shell脚本
一、现有test.sh脚本如下:
#!/bin/bash
echo "Hello World"
echo字符串 需要加引号''''
方法一:
方法二:
sh test.sh
拓展名为sh,那么用sh解释执行就可以了
二、for循环打印
#/bin/bash
for SCENE in animal building plant sky water grass mountain
do
unzip ${SCENE}.zip
done
一、现有test.sh脚本如下:
#!/bin/bash
echo "Hello World"
echo字符串 需要加引号''''
方法一:
方法二:
sh test.sh
拓展名为sh,那么用sh解释执行就可以了
二、for循环打印
#/bin/bash
for SCENE in animal building plant sky water grass mountain
do
unzip ${SCENE}.zip
done