linux-tutorial/codes/shell/脚本函数/函数基本示例.sh
2019-10-29 18:22:19 +08:00

18 lines
263 B
Bash

#!/usr/bin/env bash
# using a function in script
function func1 {
echo "This is an example of a function"
}
count=1
while [ $count -le 5 ]
do
func1
count=$[ $count + 1 ]
done
echo "This is the end of the loop"
func1
echo "Now this is the end of the script"