RH033学习笔记
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-13
tab Ctrl Shift c/v Copy/Paste Ctrl Shift w open a tab ==================================================================================== Unit 5 Standard I/O and Pipes 1,Standard input and output 2,Redirecting output displayed on the terminal 3,Redirecting input and output 4,Overwriting or Appending 5,Redirecting Standard Output 6,Redirecting Standard Error 7,Redirecting Both Standard Output and Error 8,Redirecting input 9,cut 10,sort 11,Using Pipes to Connect Processes 12,Using Pipes For Mail 13,tee 1,Standard input and output Standard input - keyboard 0 Standard output - terminal windows 1 Standard error - terminal windows 2 ls -l /dev/std* 2,Redirecting output displayed on the terminal find /etc -name passwd
Unit 12 - Introduction to String Processing 1,head 2,tail 3,wc 4,uniq 5,Other String Processing Tools 6,Version Comparison with diff 7,Spell Checking with aspell 8,Formatting Tools 1,head use -n 行数 (default 10 lines) use --lines 10 use -12 filename 适合查看文件开头的介绍部分 2,tail -n or --lines or -n 适合查看刚刚更新的文件/etc/passwd -f 查看文件时不关闭文件,适合查看正在更新的日志 cat /var/log/messages 3,wc -l for only line count -w word -c character wc README 207 1924 13001 4,uniq 去掉相邻的重复行 sort file1 |uniq = sort -u -c count numbers of 重复行 5,Other String Processing Tools paste 水平合并多个文件(tab)分隔 paste fiel1 fiel2 > file3 cat file1 file2 >file3 垂直合并 tr替换 tr ''A-Z'' ''a-z'' <a.txt 例子:unix和dos下文本文件的段落符$ r cat -A file4 a$ a$ cat -A file4 | tr '' |
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: CentOS5 mysql php的配置下一篇: Linux 服务器下多网卡的负载均衡
关于RH033学习笔记的所有评论