2013年6月13日
摘要: http://www.fwolf.com/blog/post/191 阅读全文
posted @ 2013-06-13 16:59 语辰 阅读(69) 评论(0) 推荐(0) 编辑
摘要: http://modwsgi.readthedocs.org/en/latest/configuration-directives/WSGIScriptAlias.html 阅读全文
posted @ 2013-06-13 16:52 语辰 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash my_fun() { echo "$#" } echo 'the number of parameter in "$@" is '$(my_fun "$@") echo 'the number of parameter in "$*" is '$(my_fun "$*")执行:./my.sh p1 "p2 p3" p4后返回:the number of parameter in "$@" is 3th 阅读全文
posted @ 2013-06-13 16:28 语辰 阅读(520) 评论(0) 推荐(0) 编辑
摘要: >>> a = "hello\nhow are you\ni am fine">>> print ahellohow are youi am fine>>> b = a.splitlines()>>> print b['hello', 'how are you', ' i am fine'] 阅读全文
posted @ 2013-06-13 14:30 语辰 阅读(129) 评论(0) 推荐(0) 编辑