代码改变世界

Ant: macrodef

2020-07-30 21:04 by jetwill, 94 阅读, 0 推荐, 收藏, 编辑
摘要:<macrodef name="tokenReplace"> <attribute name="subapp"/> <attribute name="targetFile"/> <sequential> <echo>Replacing tokens in file @{targetFile}</ec 阅读全文

tar中的参数 cvf,xvf,cvzf,zxvf的区别

2020-07-27 16:07 by jetwill, 8789 阅读, 0 推荐, 收藏, 编辑
摘要:转自:http://blog.sina.com.cn/s/blog_49b1f7210102ve9n.html tar cvf etcbak.tar etc/ 打包一个tar tar xvf etcbak.tar 解开一个tar tar zcvf etcbak.tar.gz etc/ 打包压缩一个 阅读全文

git 基于某个分支创建分支

2020-07-09 16:36 by jetwill, 7382 阅读, 0 推荐, 收藏, 编辑
摘要:1、拷贝源代码 git clone git@git地址 cd 项目目录 2、根据已有分支创建新的分支 git checkout -b yourbranchname origin/oldbranchname 3、推送到git git push origin yourbranchname 4、 git 阅读全文

Oracle 报 ORA-00054资源正忙的解决办法

2020-07-06 23:10 by jetwill, 1187 阅读, 0 推荐, 收藏, 编辑
摘要:oracle之报错:ORA-00054: 资源正忙,要求指定 NOWAIT 问题如下: SQL> conn scott/tiger@vm_database Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 C 阅读全文

java.exe and -classpth or -cp

2020-07-03 11:46 by jetwill, 178 阅读, 0 推荐, 收藏, 编辑
摘要:mydirname=$(dirname $0) java -cp $classes_dir:$lib_dir/*:$config_dir -Doracle.net.wallet_location=${WALLET_HOME} -Doracle.net.tns_admin=${TNS_ADMIN} c 阅读全文

Apache Ant: If 和 Unless

2020-06-08 23:48 by jetwill, 671 阅读, 0 推荐, 收藏, 编辑
摘要:If And Unless 从 Ant 1.9.1 起,可以在所有的任务和嵌套的元素上以特别的命名空间添加 if 和 unless 属性。 In order to use this feature you need to add the following namespace declaration 阅读全文

关于 vim 的插件 snipmate 以及它的安装方式(使用国内源)

2020-05-31 16:26 by jetwill, 1095 阅读, 0 推荐, 收藏, 编辑
摘要:snipmate 是一个类似代码补全的东西,更好的地方在于自定义补全的内容。 最新的 snipmate 是在 https://github.com/garbas/vim-snipmate 而不是在官网,官网很久没更新了 snipmate 的安装方式 官方推荐的是 Pathogen 安装方式,注意,你 阅读全文

vim 安装使用 pathogen

2020-05-31 16:09 by jetwill, 2000 阅读, 0 推荐, 收藏, 编辑
摘要:pathogen 是什么? pathogen 一般作为 vim 新手的第一个插件,用来统一管理 vim 插件包。 (官方解释)非常容易地管理你的 'runtimepath' , 在实际项目中,vim-pathogen 可以在它的私有文件夹下非常轻松地安装插件和管理运行时文件。 如何安装? 复制以下代 阅读全文

Ant 调用 Shell/CMD 命令

2020-05-24 20:28 by jetwill, 1228 阅读, 0 推荐, 收藏, 编辑
摘要:Ant中调用Makefile,使用shell中的make命令 意思是直接调用系统控制台,先执行cd命令,再执行ant脚本指定任务,/c 表示执行后续 String 指定的命令,然后停止。 参考: https://www.cnblogs.com/luolizhi/p/5524842.html 阅读全文

JAVA获得系统配置文件的System Properties

2020-05-24 19:59 by jetwill, 755 阅读, 0 推荐, 收藏, 编辑
摘要:Code: Result: 阅读全文
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页