文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>ABS_cn_Gui笔记一(第二章 基本)

ABS_cn_Gui笔记一(第二章 基本)

时间:2007-12-25  来源:Jenkin

  1. 一般认为 # 开头的都是注释,但以下情形则不是:
 

  1 echo "The # here does not begin a comment."
  2 echo 'The # here does not begin a comment.'
  3 echo The \# here does not begin a comment.
  4 echo The# 这里开始一个注释
  5

  6 echo ${PATH#*:}       # 参数替换,不是一个注释
  7 echo $(( 2#101011 ))  # 数制转换,不是一个注释

2. ; 这个分号为命令分隔符,可以用来在一行中来写多个命令.

1 echo hello; echo there
  2

  3
  4 if [ -x "$filename" ]; then # 注意:"if"和"then"需要分隔
  5 # 为啥?
  6 echo "File $filename exists."; cp $filename $filename.bak
  7 else
  8 echo "File $filename not found."; touch $filename
  9 fi; echo "File test complete."

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载