全部博文(842)
发布时间:2013-03-22 15:20:15
Bash Shell中命令行选项/参数处理0.引言 写程序的时候经常要处理命令行参数,本文描述在Bash下的命令行处理方式。 选项与参数: 如下一个命令行: ./test.sh -f config.conf -v --prefix=/home 我们称-f为选.........【阅读全文】
发布时间:2013-03-22 15:17:25
#!/bin/bash#$0: bash file name with path#$?: last cmd state after execute#$*: all the param in form "param1param2pram3......"#$@: all the param in form "param1""param2""param3""......"#$#: param number#$n: n corresponding t.........【阅读全文】
发布时间:2013-03-22 15:11:33
一、查看系统信息1.查看当前操作系统发行版信息:# cat /etc/issueWelcome to SUSE Linux Enterprise Server 11 (x86_64) - Kernel \r (\l).2、查看当前操作系统内核信息:# uname -a Linux Africa 2.6.27.19-5-default #1 SMP 2009-02-28 04:40:21 +0100 x86_64 x86_64 x86_64 GNU/Linux3、查看计算机名:# host.........【阅读全文】