linux-tutorial/codes/shell/示例脚本/脚本函数/基本的脚本函数.sh
2019-10-10 08:56:31 +08:00

18 lines
264 B
Bash

#!/bin/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"