Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post 1$ hexo new "My New Post" More info: Writing Run server 1$ hexo server More info: Server Generate static files 1$ hexo generate More info: Generating Deploy to remote sites 1$ hexo deploy More info: Deployment
tcl常用指令
入门书籍推荐 第二版 语法 变量替换 替换的变量是由$后面的所有字母,数字和下划线组成。故遇到非字母,数字,下划线就会终止。 命令替换 反斜杠替换 引用 指令换行 \ 后面一定不要加空格,否则指令解析会出错 三种匹配 exact匹配 glob匹配 正则表达式 变量 无需进行定义,直接使用set进行创建,unset移除,变量包含变量名和变量值 使用$进行调用 区分大小写 变量名和变量值都可以由任意字符组成,但是建议使用字母开头,使用字母,数字和下划线来命名 常用的变量类型有:string list array directionary,synopsys有collection 变量存储分为字符串表达形式和内部表达式形式(整数,实数,名称,列表以及tcl脚本) string match 使用glob匹配方式进行匹配 例子: equal 例子: compare 例子: length 例子: index 例子: range 例子: replace 例子: ...
