linux-tutorial/codes/shell/示例脚本/脚本函数/基本的脚本函数.sh

18 lines
264 B
Bash
Raw Normal View History

2019-05-10 11:17:57 +08:00
#!/bin/bash
# using a function in script
function func1 {
2019-10-10 08:56:31 +08:00
echo "This is an example of a function"
2019-05-10 11:17:57 +08:00
}
count=1
while [ $count -le 5 ]
do
2019-10-10 08:56:31 +08:00
func1
count=$[ $count + 1 ]
2019-05-10 11:17:57 +08:00
done
echo "This is the end of the loop"
func1
echo "Now this is the end of the script"