下载并打补丁
cd /root/
wget http://ftp.gnu.org/gnu/bash/bash-4.2.tar.gz
tar zxvf bash-4.2.tar.gz
mkir patch;cd patch
wget -r -nd -np http://ftp.gnu.org/gnu/bash/bash-4.2-patches/
cd /root/bash-4.2
for p i
...
无论什么编程语言都离不开条件判断。SHELL也不例外。
if list then
do something here
elif list then
do another thing here
else
do something else here
fi
EX1:
#!/bin/sh
SYSTEM=`uname -s` #获取操作系统类型,我本地是linux
if [ $SYSTEM = "Linu
...
最新评论