taoCMS是基于php+sqlite/mysql的国内最小(100Kb左右)的功能完善、开源免费的CMS管理系统

Sh 的一些简单脚本

2012-05-30
获取服务器IP的Shell 脚本:
LC_ALL=C ifconfig  | grep 'inet addr:'| grep -v '127.0.0.1' |
cut -d: -f2 | awk '{ print $1}'
简单的语法练习
#! /bin/sh
#while 语句
echo "enter passwd"
read passwd
while [ $passwd != "aaa" ];do
        echo "sorry try again"
        read passwd
done


#for 语句
#! /bin/bash
for i in a b c; do 
        echo "$in"
done

#case 语句

#! /bin/sh

echo "Enter a number"
read number
case $number in
        1)
        echo "you number is 1"
        ;;
        2)
        echo "yo number is 2"
        ;;
        *)
        exit 1 
        ;;
esac 

#if else elif fi 

#! /bin/sh

echo "Is it morning? Please answer yes or no."
read YES_OR_NO
if [ "$YES_OR_NO" = "yes" ]; then
  echo "Good morning!"
elif [ "$YES_OR_NO" = "no" ]; then
  echo "Good afternoon!"
else
  echo "Sorry, $YES_OR_NO not recognized. Enter yes or no."
  exit 1
fi
exit 0

下载整站
wget -mk http://www.imop.us

判断文件的存在与否
if [ ! -f /home/testfile ]
   then echo "tesfile note exist"
fi

类别:技术文章 | 阅读:176761 | 评论:0 | 标签:shell

想收藏或者和大家分享这篇好文章→

“Sh 的一些简单脚本”共有0条留言

发表评论

姓名:

邮箱:

网址:

验证码:

公告

taoCMS发布taoCMS 3.0.2(最后更新21年03月15日),请大家速速升级,欢迎大家试用和提出您宝贵的意见建议。

捐助与联系

☟请使用新浪微博联系我☟

☟在github上follow我☟

标签云