摘要: 1. 新建 -> 变量名“JAVA_HOME”, 变量值“C:\Program Files\Java\jdk1.8.0_112”(即JDK的安装路径) 2. 编辑 -> 变量名“Path”, 在原变量值的最后加上“;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin” 3. 新建 阅读全文
posted @ 2018-10-19 12:51 邻家大男孩 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 例子: 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 阅读全文
posted @ 2018-10-19 11:09 邻家大男孩 阅读(2856) 评论(0) 推荐(0) 编辑
摘要: mysql可使用into outfile参数把表中的数据到处到csv,示例如下: select user_id from weibo_comment into outfile '/home/dazhan/comment.csv' lines terminated by '\n'; 执行后,weibo 阅读全文
posted @ 2018-10-19 11:00 邻家大男孩 阅读(5012) 评论(0) 推荐(0) 编辑