摘要:
1. 新建 -> 变量名“JAVA_HOME”, 变量值“C:\Program Files\Java\jdk1.8.0_112”(即JDK的安装路径) 2. 编辑 -> 变量名“Path”, 在原变量值的最后加上“;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin” 3. 新建 阅读全文
摘要:
例子: while getopts ":e:s:pd:l" arg; do case $arg in e) ghs_env=$OPTARG ;; s) ghs_service=$OPTARG ;; p) proxy=`sed '/^PROXY=/!d;s/.*=//' config.properti 阅读全文
摘要:
mysql可使用into outfile参数把表中的数据到处到csv,示例如下: select user_id from weibo_comment into outfile '/home/dazhan/comment.csv' lines terminated by '\n'; 执行后,weibo 阅读全文