
cammand-tools
文章平均质量分 66
ken_scott
这个作者很懒,什么都没留下…
展开
-
<<Git图解>>笔记
Git图解: http://marklodato.github.com/visual-git-guide/index-zh-cn.html 笔记: git add files # 把当前文件放入缓冲区(索引) git add * # 把所有修改过的文件放入缓冲区(索引) git rm files # 从缓冲区(索引)删除files git commit # 给缓冲区(索引)生成快原创 2012-09-08 20:49:49 · 1204 阅读 · 0 评论 -
Ubuntu12.04编译安装Boost1.55
1. sourceforge上下载Boost1.55 2. 解压到 boost_1_55_0 3.原创 2014-04-13 15:08:11 · 2337 阅读 · 0 评论 -
git+openssh 的安装与简单使用
# 安装git sudo apt-get install git # 安装openssh服务器 # 如不成功,可参考: http://blog.youkuaiyun.com/feliciafay/article/details/6561414 sudo apt-get install openssh-server sudo do-release-upgrade # 下面原创 2012-09-08 01:21:39 · 6138 阅读 · 0 评论 -
批量修改文件、文件夹访问权限的命令
修改path目录下所有的文件访问权限为755: find path -type f -exec chmod 755 {} \; 修改path目录下所有的目录访问权限为644: find path -type d -exec chmod 644 {} \;原创 2015-04-10 16:02:30 · 2072 阅读 · 0 评论 -
vs编译安装boost
编译、安装Boost1.55 1. sourceforge上下载Boost1.55 2. 解压到E:/boost_1_55_0 3. 程序 -- 所有程序 -- Visual Studio 2013 -- Visual Studio Tools -- VS2013 开发人员命令提示 4. 修改文件 has_member_function_callable_with....原创 2014-04-13 05:22:52 · 2300 阅读 · 0 评论