欢迎来到天天文库
浏览记录
ID:37457618
大小:843.00 KB
页数:16页
时间:2019-05-24
《linux培训第六天》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、输入输出重定向:标准输入设备:键盘文件标记:0标准输出设备:屏幕标记:1错误输出设备:屏幕标记:2将标准输出定向到文件,如果文件不存在则创建,存在则覆盖[root@haha~]#ls>outfile[root@haha~]#catoutfile1a.txtb.txtclean.shc.txtDesktopEIOfficeexcise将标准输出定向到文件,如果文件存在则追加[root@haha~]#ls>outfile[root@haha~]#wcoutfile1919143outfile[root@haha~]#ls>outfile[root@haha~
2、]#wcoutfile1919143outfile[root@haha~]#ls>>outfile[root@haha~]#wcoutfile3838286outfile[root@haha~]#ls>>outfile[root@haha~]#wcoutfile5757429outfile将错误的输出定向到文件或追加到文件[root@haha~]#lsxxxxls:xxxx:没有那个文件或目录[root@haha~]#lsxxxx2>err.file[root@haha~]#lsxxxxls:xxxx:没有那个文件或目录[root@haha~]#wcer
3、r.file1338err.file[root@haha~]#lsxxxx2>>err.file[root@haha~]#wcerr.file2676err.file将标准输出和标准错误分别定向到文件[root@haha~]#find/-perm4755>outfile2>err.file将标准错误和标准输出合并定向到文件[root@haha~]#ls&>all.file将标准错误和标准输出合并定向到系统黑洞[root@haha~]#ls>/dev/null2>&1Heredocumentcatfile将文件内容读出做cat命令的输入[root@haha
4、~]#cat<hello>world>EOFhelloworld[root@haha~]#passwd<aixocm>aixocm>EOFChangingpasswordforuserroot.NewUNIXpassword:BADPASSWORD:itisbasedonadictionarywordRetypenewUNIXpassword:passwd:allauthenticationtokensupdatedsuccessfully./dev/null/dev/zero介绍/dev/null是系统的黑洞/dev/zero是系统
5、的零发生器前一篇学习笔记已经介绍了使用这两个测试硬盘的速度了,这里就不多讲了cut命令cut-blist[-n][file]cut-clist[file]cut-flist[-ddelimiter][-s][file]-b、-c、-f分别表示字节、字符、字段list表示-b、-c、-f的操作范围,-n常常表示具体数字file表示操作文件名称delimiter表示分隔符,默认情况下是TAB-s表示不包括那些不含分隔符的行范围的表示方法:N只有第N项N-从第一项一直到行尾N-M从第N项到第M项(包括M)-M从一行的开始到第M项(包括M)从一行的开始到结束的所
6、有项[root@haha~]#cut-c0-6/etc/passwdroot:xbin:x:daemonadm:x:lp:x:4sync:xshutdohalt:xmail:xnews:xuucp:x[root@haha~]#cut-d:-f1/etc/passwdrootbindaemonadmlpsyncshutdownhaltmailnewsuucpoperatorgamesgopherftp[root@haha~]#cata.txt#!/bin/shabcdcbkgqhbc[root@haha~]#cut-f1--sa.txtabcdcbkgqh
7、bc-s去除文本中的注释[root@haha~]#grep"[0-9]:"/proc/interrupts0:370830658168IO-APIC-edgetimer1:86267IO-APIC-edgei80428:10IO-APIC-edgertc9:01IO-APIC-levelacpi12:1280123022IO-APIC-edgei804250:2510PCI-MSIHDAIntel169:00IO-APIC-leveluhci_hcd:usb5,i9209:00IO-APIC-leveluhci_hcd:usb4217:167455304
8、IO-APIC-levelehci_hcd:usb1,uhci_hcd:usb2
此文档下载收益归作者所有