shell脚本学习

Posted 睡着的糖葫芦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本学习相关的知识,希望对你有一定的参考价值。

#!/bin/sh
ip=`ifconfig eth0 | grep inet | awk {print $2}`
ip1=x.x.x.x

if [ "$ip" == "$ip1" ]; then
dir=/home/wwwroot/default/guoyi/Pay/
else
dir=/home/web/guoyi/Pay/
fi

php ${dir}index.php order_task

 

以上是关于shell脚本学习的主要内容,如果未能解决你的问题,请参考以下文章

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

常用python日期日志获取内容循环的代码片段

shell脚本引用expect

Shell脚本切割日志

Shell脚本(学习笔记1)

shell基础学习系列一:第一个shell脚本