#!/bin/bash
# This program is used to study if then
# ven 2009/12/14
echo "Press y to continue"
read yn
if [ "$yn" = "y" ]; then
echo "script is running..."
else
echo "STOP!"
fi
要注意的地方!! 就是空格。很重要,不然很容易就提示错误。
if then;else fi..
这里说几个注意的地方:
- 在 [ ] 当中,只能有一个判别式;
- 在 [ ] 与 [ ] 当中,可以使用 && 或 || 来组织判别式;
- 每一个独立的组件之间『都需要有空格键来隔开』!
阅读(944) | 评论(0) | 转发(0) |