标签:输出 shel 程序 bsp bash 声明 ash 不能 空格
1. #!脚本解释程序的声明指令,用来声明用什么程序解释这个脚本
# 是注释
2.如果是/bin/sh ,执行命令为 sh ./脚本文件名
/bin/bash是/bin/sh的扩展,弥补了很多/bin/sh的缺点
3.变量,需要初始化。
变量名和值的等号两边不能有空格
取用变量的值只需 “¥变量名”即可
4.weight=1
weight=¥weight+1
echo ¥weight
输出结果是 1+1
应该改成 weight=¥((¥weight + 1))加号两边有空格
标签:输出 shel 程序 bsp bash 声明 ash 不能 空格
原文地址:http://www.cnblogs.com/xuechun/p/6031395.html