查看帮助文档man man MANUAL SECTIONS The standard sections of the manual include: 1 User Commands 2 System Calls 3 C L...
分类:
系统相关 时间:
2014-10-18 15:13:07
阅读次数:
206
作者:zhanhailiang 日期:2014-10-17
分支的应用场景
总结一句就是方便并行开发。
Subversion has commands to help you maintain parallel branches of your files and directories. It allows
you to create branches b...
分类:
其他好文 时间:
2014-10-17 23:25:42
阅读次数:
359
登陆进入服务器
[root@gzmtest_25 ~]# su - mysql
[mysql@gzmtest_25 ~]$ mysql.local
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 126000553
Server version: 5.5.27-l...
分类:
数据库 时间:
2014-10-17 11:54:33
阅读次数:
435
函数可以让我们将一个复杂功能划分成若干模块,让程序结构更加清晰,代码重复利用率更高。像其他编程语言一样,Shell 也支持函数。Shell 函数必须先定义后使用。Shell 函数的定义格式如下:function_name () { list of commands [ return va...
分类:
系统相关 时间:
2014-10-14 06:27:47
阅读次数:
260
函数是被赋予名称的脚本代码块,可以在代码的任意位置重用。每当需要在脚本中使用这样的代码块时,只需引用该代码块被赋予的函数名称。创建函数格式function name { commands}name 属性定义了该函数的唯一名称。name 后面要有空格。name() { commands}示例#!/.....
分类:
系统相关 时间:
2014-10-13 10:35:09
阅读次数:
346
Linux提供了丰富的帮助手册,当你需要查看某个命令的参数时不必到处上网查找,只要man一下即可。
Linux 的man手册共有以下几个章节:
1、Standard commands (标准命令)
2、System calls (系统调用)
3、Library functions (库函数)
4、Special devices (设备说明)
5、File formats (文件格式...
分类:
系统相关 时间:
2014-10-11 18:49:55
阅读次数:
177
C = ControlM = Meta = Alt|EscBasicsC-x C-f"find" file i.e. open/create a file in bufferC-x C-ssave the fileC-x C-wwrite the text to an alternate nameC...
分类:
其他好文 时间:
2014-10-09 15:58:54
阅读次数:
176
Code Path:
https://github.com/bluesilence/Lisp/blob/master/clojure/projects/room-escape/src/room_escape/core.clj
E2E Process
Now it's time to put the stuff altogether.
The body of the core c...
分类:
Web程序 时间:
2014-10-05 18:36:28
阅读次数:
191
Based on the draft, the data models can be built of 3 major units:
1. Room...
分类:
Web程序 时间:
2014-10-05 17:54:18
阅读次数:
215
Code Path:
https://github.com/bluesilence/Lisp/blob/master/clojure/projects/room-escape/src/room_escape/script.clj
Extract Story to TXT
In order to move the story from .clj into .txt, I lever...
分类:
Web程序 时间:
2014-10-05 17:36:38
阅读次数:
214