全部博文(2759)
发布时间:2013-06-15 12:18:41
我用的是debian系统,下面有些命令可能需要根据不同系统做出修改 1. 安装vim,ctags,cscope点击(此处)折叠或打开aptitude install vim ctags cscope 2. 下载个taglist的vim插件 下载地址:http://www.vim.org/scripts/script.php?script_id=273 .........【阅读全文】
发布时间:2013-05-10 06:11:20
Shell特殊字符# 注释1. 表示注释 #注释2. 在引号中间和\#等表示#本身3.echo ${PATH#*:} # 参数替换,不是一个注释4.echo $(( 2#101011 )) # 数制转换,不是一个注释echo "The # here does not begin a comment."echo 'The # here does not begin a comment.'echo The \# here does not begin a comment.echo The .........【阅读全文】