commit
87f8ac21ca6d2d086984dfc39b1869dc51ecd36fAuthor: Vitasic Date: Tue Jun 26
15:43:38 2012 +0400 Add Fake Playersdiff --git a/src/server/game/...
分类:
数据库 时间:
2014-05-28 04:43:05
阅读次数:
409
所有的环境搭建动作请参考FFMpeg官方网站:http://www.ffmpeg.org/index.html1. 获取源代码:git clone
git://source.ffmpeg.org/ffmpeg.git ffmpeg,下面三个目录是需要用到的ffmpeg_sources– Where ...
分类:
其他好文 时间:
2014-05-28 03:55:32
阅读次数:
234
1 #!/bin/bash 2 #查询 3 echo -e 4 for i in `cat
id.txt` 5 do 6 A=`mysql -h10 -uw -p2012 -Ne "select Id,Name,User_Logindate from
info where Id=$i"`...
分类:
数据库 时间:
2014-05-27 18:08:04
阅读次数:
341
#!/bin/bash# Program to output a go source file
with user informationCURRENT_TIME=$(date +"%x %r %Z")cat <<
EOF/* Author:$USER CreatedAt:$CURRENT_TIME...
分类:
其他好文 时间:
2014-05-27 17:49:29
阅读次数:
283
git branch look at your branchesgit branch
newbranchgit checkout newbrachdo somethinggit checkout mastergit merge
newbranchgit branch -d newbrach
分类:
其他好文 时间:
2014-05-27 16:09:01
阅读次数:
227
#!/bin/bash# 用shell中的数组构造统计不同的组合个数.#
下面的组合有(1,6)(3,4)(5,5)(1,6)(5,5)(4,3)(1,8)#
不同的组合为(1,6)(3,4)(5,5)(4,3)(1,8)arrayLeft=(1 3 5 1 5 4 1)arrayRight=(6 ...
分类:
其他好文 时间:
2014-05-26 19:17:19
阅读次数:
409
设置git使用http://协议代替git://协议,保证网络畅行D:\git config
--global url."https://".insteadOf git://D:\git config
--listcore.symlinks=falsecore.autocrlf=truecolor....
分类:
其他好文 时间:
2014-05-26 18:49:07
阅读次数:
958
这是一篇长期更新的文章,温故知新,点滴积累。对我而言,直接复制粘贴一个命令大全实在是效果不佳。
1)创建了a,b两个Diff之后,如果a为稳定版本,b为开发版本,则应该在b中进行新的改动,改动完之后,必须commit(本地),最好push(远程,这样远程也保留了一个b的备份),这样的话,进入a...
分类:
其他好文 时间:
2014-05-25 22:54:31
阅读次数:
332
这篇文章主要介绍Shell脚本编写俄罗斯方块的方法,原文来自脚本之家,http://www.jb51.net/article/48926.htm效果图:代码:#!/bin/bash#
Tetris Game# 10.21.2003 xhchen#APP declarationAPP_NAME="${...
分类:
其他好文 时间:
2014-05-25 22:25:03
阅读次数:
352
ubuntu下/bin/sh的指向
ubuntu 下 /bin/sh 默认是dash,用ll /bin/sh就可以看出来sh是指向dash的链接,有时候会导致使用bash脚本的时候出问题。
如果遇到这个问题了,就要把sh指向bash。
用下面的命令把dash修改为bash
用sudo dpkg-reconfigure dash 选择否
查看当前的she...
分类:
其他好文 时间:
2014-05-25 21:31:45
阅读次数:
224