文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Tips for Shell(2)

Tips for Shell(2)

时间:2006-04-11  来源:wolfssss

流程控制

if then
if (condition)
  then
    then-commands
fi

if then else
if (condition)
  then
    then-commands
else
    else-commands
fi

if the elif
if (condition1)
  then
    commands1
elif (condition2)
  then
    commands2
else
    commands3
fi

for in
for var in arg-list
  do
    commands
done

for
for var
  do
    commands
done

while
while (condition)
do
    commands
done

until
until (condition)
do
    commands
done

break

continue

case
case str in
  pat1) commands1;;
  pat2) commands2;;
  pat3) commands3;;
esac
pat除了可以指定一些确定的字符串,也可以指定字符串的集合,如下:
*         任意字符串
?         任意字符
[abc]     a、b 或 c 三字符其中之一
[a-n]     从a到n的任一字符
|         多重选择

另摘2个常用的shell实例:

将.foo后缀的文件批量改名为.bar后缀。
for f in *.foo; do
  base = `basename $f .foo`
  mv $f $base.bar
done

将大写文件名改为小写文件名。
for f in *; do
  mv $f `echo $f | tr '[A-Z]' '[a-z]'`
done
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载