login
shell:第一次登录进系统时的shell,一般是指本机启动时的控制台shell或者ssh远程登录时的shell。interactive
shell:登录以后,再打开控制台时运行的shell。none interactive shell:只是用来执行脚本的shell,执行完就结束进程了,...
分类:
其他好文 时间:
2014-05-23 08:52:18
阅读次数:
313
Other developers using your code will probably
expect the built-in JavaScript methods to work consistently and will not expect
your additions. And pro...
分类:
编程语言 时间:
2014-05-22 02:21:49
阅读次数:
298
你能够依据调用次序来mock同一个办法:EasyMock.expect(request.getParameter("userName")).andReturn("trilogy").once();EasyMock.expect(request.getParameter("userName")).an...
分类:
其他好文 时间:
2014-05-21 22:17:46
阅读次数:
248
首先说下我个人对于shell的理解,我觉得shell是一种通过各种控制语句将linux命令进行集合实现批处理的一种脚本语言.shell编程入门其实很简单,语法知识并不多,但是高级shell编程就很难,因为shell是用户和linux之间的桥梁,要编写高质量的shell脚本,就需要用户对linux有很...
分类:
系统相关 时间:
2014-05-21 19:30:46
阅读次数:
328
1 #!/bin/bash 2 #based on a script from
http://invisible-island.net/xterm/xterm.faq.html 3 exec /dev/tty 8 # tput u7
> /dev/tty # when TERM=xt...
分类:
其他好文 时间:
2014-05-21 18:43:15
阅读次数:
300
In bash shell, when you use a dollar sign
followed by a variable name, shell expands the variable with its value. This
feature of shell is called para...
分类:
其他好文 时间:
2014-05-21 18:32:32
阅读次数:
332
likely() 与 unlikely()是内核(2.6的版本应该都有)中定义的两个宏。位于/include/linux/compiler.h中,
具体定义如下:
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
__builtin_expect是gcc...
分类:
系统相关 时间:
2014-05-21 06:36:34
阅读次数:
368
在.bash_profile中增加一行exportJAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8就可以了。
分类:
编程语言 时间:
2014-05-21 02:14:53
阅读次数:
243
1.统计/usr/bin目录下的文件个数[root@localhost~]#ls/usr/bin|wc-l
1306
[root@localhost~]#2.取出当前系统上所有用户的SHELL,要求,每种SHELL只显示一次,并且按顺序进行显示[root@localhost~]#cut-d:-f7/etc/passwd|sort-u
/bin/bash
/bin/nologin
/bin/sync
/bin/tcsh
/sb..
分类:
系统相关 时间:
2014-05-21 02:01:09
阅读次数:
530
语法:type[-tpa]name参数:type:不加任何参数时,type会显示出name是外部命令还是内部bash内置命令-t:当加入-t参数时,type会将name以下面这些字眼显示出它的意义file:表示为外部命令alias:表示该命令为命令别名所设置的名称builtin:表示该命令为bash内置的命令功能-p:如果..
分类:
系统相关 时间:
2014-05-20 23:37:25
阅读次数:
442