记一个不太理解的shell脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一个不太理解的shell脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash date_count=0; hello () { echo "hello"; } date () { echo date_count:$date_count let date_count+=1 if [ $date_count -gt 5 ]; then return fi ############################ # 以下几种写法,结果不同 # exec date # exec `date` `date` # date # echo `date` # command date ############################ echo fun date end:$date_count } date hello date date date date
以上是关于记一个不太理解的shell脚本的主要内容,如果未能解决你的问题,请参考以下文章
用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]