摘要:
Linux精华集Linux最常用的命令表————————————————————————————命令 描述————————————————————————————clear 清除终端屏幕reset 使用缺省的终端设置复位终端finger 在系统用户上显示信息who 显示当前登陆的用户whoami 系那是你的登陆名id 显示你的账户名和组名的相关号,即UID和GIDdate 显示当前的日期和时间cal 显示当月的日历exit ... 阅读全文
摘要:
UNIX Shell 编程(5)过滤器tr用来转换来自标准输入的字符。格式:tr from-chars to-charsfrom-chars 和 to-chars 是一个或多个字符。例如:[root@localhost programs]# cat introThe Unix operating system was pioneered by KenThompson and Dennis Ritchie at Bell Laboratoriesin the late 1960s. One of the primary goals inthe design of the Unix system 阅读全文
摘要:
UNIX Shell 编程(4)cut命令可以从数据文件或者命令的输出中截取所需的数据域。命令格式:cut -cchars filechars表示要截取哪些文字,可以是数字。file表示文件,如果不指定file,cut从标准输出读入输入,即可把cut命令作为管道的过滤器。如:[root@localhost misc]# whoroot pts/1 2009-04-15 09:15 (10.3.34.117)fedora tty7 2009-04-15 09:46 (:0)[root@localhost misc]# who | cut -c1-8roo... 阅读全文