分类: LINUX
2009-09-15 10:19:15
1--firefox 附加组件
2--rar for linux
3--foxit reader for linux
4--mplayer 软件包
5--openoffice.org中文版下载
http://wiki.services.openoffice.org/wiki/ZH/Documentation/Administration_Guide/Linux
6--solang
7--火狐中文官方网
8--雷鸟
9--rtorrent(简体中文)
(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)
10--bittorrent 下载
11--archlinux
12--libnet包
man page)
15--wake on lan wol 软件包下载
16--linux 社区
17--冰岛杀毒软件
18--MD5和SHA1
22--mondo rescure linux ghost
http://www.mondorescue.org
23--make cd-rom recovery
25--rlwrap (sqlplus可用光标)
~hlub/uck/rlwrap/
26--linux 教程网
27--AIX
28--bash 变量
29--linux and unix
30--centos 软件包下载中心
http://dev.centos.org/centos/
http://cdimage.ubuntu.com/releases(ubuntu)
31--suse iso下载
32--rhel iso下载
35--usb for linux
36--图片制作软件
www.imagemagick.org/
(gimp)
37--linux 安装方式
38--linux图书
40--LSB(linux standards base)
http://www.ibm.com/developerworks/cn/linux/l-lsb-intr/index.html(lsb简介)
(LSB最新版本)
41--linux ip sec
42--Linux 2.6.19.x 内核编译配置选项简介
43--modutils e2fsprogs (内核源码编译)
ftp://ftp.kernel.org/pub/linux/utils/kernel/modutils/
44--grub4dos
46--flash for linux
(.rpm)
47--
48--svn软件
50--
chinaunix网友2009-09-28 13:36:57
1)判断表达式 if test (表达式为真) if test !表达式为假 test 表达式1 –a 表达式2 两个表达式都为真 test 表达式1 –o 表达式2 两个表达式有一个为真 2)判断字符串 test –n 字符串 字符串的长度非零 test –z 字符串 字符串的长度为零 test 字符串1=字符串2 字符串相等 test 字符串1!=字符串2 字符串不等 3)判断整数 test 整数1 –eq 整数2 整数相等 test 整数1 –ge 整数2 整数1大于等于整数2 test 整数1 –gt 整数2 整数1大于整数2 test
chinaunix网友2009-09-23 10:15:23
Bourne和Korn shell中的重定向
从文件输入
chinaunix网友2009-09-23 10:05:34
command > file 2>file 与command > file 2>&1 有什么不同的地方. 首先~command > file 2>file 的意思是将命令所产生的标准输出信息,和错误的输出信息送到file 中.command > file 2>file 这样的写法,stdout和stderr都直接送到file中, file会被打开两次,这样stdout和stderr会互相覆盖,这样写相当使用了FD1和FD2两个同时去抢占file 的管道. 而command >file 2>&1 这条命令就将stdout直接送向file, stderr 继承了FD1管道后,再被送往file,此时,file 只被打开了一次,也只使用了一个管道FD1,它包括了stdout和stderr的内容. 从IO效率上,前一条命令的效率要比后面一条的命令效率要低,所以在编写shell脚本的时候,较多的时候我们会用command > file 2>&1 这样的写法.