能力强的人善于解决问题,有智慧的人善于绕过问题。 区别很微妙,小心谨慎做后者。
全部博文(399)
发布时间:2013-01-07 22:52:18
比较两个字符串是否相等的办法是: if [ "$test"x = "test"x ]; then 这里的关键有几点: 1 使用单个等号 2 注意到等号两边各有一个空格:这是unix shell的要求 3 注意到"$test"x最后的x,这是特意安排的,因为当$test为空的时候,上面的表达式就变成了x = testx,显然是不相等的。而如果没有这个x,表达式就会报错:[: =: unary operator expected 二元比较操作符,比较变量或者比较数字.注意数字与字符串的区别. 整数比较 -eq 等于,如:if......【阅读全文】
发布时间:2013-01-07 22:51:47
http://cloud.csdn.net/a/20120321/313378.htmlhttp://blog.chinaunix.net/uid/23480577/frmd/161461.html......【阅读全文】
发布时间:2012-12-21 16:10:47
1) Work work = new Work() { public void execute(Connection connection) throws SQLException { Statement statement = connection.createStatement(); ......【阅读全文】
发布时间:2012-12-16 21:30:29
hardstatus onhardstatus alwayslastlinehardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %m/%d %C%a "startup_message offdefencoding GBK# --------------------------------------------------------------------------# STARTUP SCREENS# -------------------------------------------------------......【阅读全文】
发布时间:2012-12-09 19:05:09
http://blog.chinaunix.net/uid/28437434/frmd/169241.htmlfiles=(1 2 3 4 5 6);root@C4LX_base_pltfm_template c4lx:~/test> echo ${#files[@]}6root@C4LX_base_pltfm_template c4lx:~/test> echo ${files[@]}1 2 3 4 5 6if((${#files[@]}>2));then echo 1;fiif [ ${#files[@]} -ge 2 ];then echo 1;fi(1)精确除法&nb......【阅读全文】