摘要: java通用启动脚本 jenkins脚本 阅读全文
posted @ 2019-03-13 15:00 ScoutDu 阅读(176) 评论(0) 推荐(0) 编辑
摘要: win + R 运行win + L 锁定电脑win + D 回到桌面windows bat脚本shift + 右键 出现的命令行,有在此处打开命令窗口选项cls cmd清屏 阅读全文
posted @ 2019-03-08 09:03 ScoutDu 阅读(86) 评论(0) 推荐(0) 编辑
摘要: //1. false System.out.println(Integer.parseInt("01")>10); //2. abcdefghijklmnopqrstuvwxyz System.out.println("ABCDEFGHIJKLMNOPQRSTUVWXYZ".toLowerCase(Locale.ENGLISH)); ... 阅读全文
posted @ 2019-03-07 20:04 ScoutDu 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.统计筛选过后的数据行=SUBTOTAL(3,A3:A353)A3与A353为起始数据行 2."serviceData.putString("""&A3&""","""");"字符串用""括起来表示字符"用""表示&表示字符串连接符 3.="sb.append(FixedLenUtil.conve 阅读全文
posted @ 2019-03-07 19:47 ScoutDu 阅读(137) 评论(0) 推荐(0) 编辑
摘要: jsch是java的sftp实现 阅读全文
posted @ 2019-03-06 11:34 ScoutDu 阅读(182) 评论(0) 推荐(0) 编辑
摘要: git配置信息查看.gitignore 过滤规则1.17 git log命令后如果用ctrl+c退出就会卡死,如果用q退出就没问题 git checkout .撤销本次工作空间修改 git branch 查看本地分支git branch -r 查看远程分支git branch -a 查看所有分支gi 阅读全文
posted @ 2019-03-04 19:33 ScoutDu 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1.if [ ! -d "$APP_HOME/log4j" ]; then mkdir $APP_HOME/log4jfi -d 表示判断是否为文件夹 if [ -n "$javaps" ]; then psid=`echo $javaps | awk '{print $1}'` else psid 阅读全文
posted @ 2019-02-13 18:28 ScoutDu 阅读(139) 评论(0) 推荐(0) 编辑