1、将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中
[root@localhost ~]# (tr ‘a-z‘ ‘A-Z‘ < /etc/issue) > /tmp/issue.out
[root@localhost tmp]# tr ‘a-z‘ ‘A-Z‘ < /etc/issue | cat > /tmp/issue.out
[root@localhost ~]# cat /etc/issue | tr ‘a-z‘ ‘A-Z‘ | tee /tmp/issue.out
2、将当前系统登录用户的信息转换为大写后保存至/tmp/who.out文件中
[root@localhost ~]# who | tr ‘a-z‘ ‘A-Z‘ > /tmp/who.out
[root@localhost ~]# who | tr ‘a-z‘ ‘A-Z‘ | tee /tmp/who.out1
3、一个linux用户给root发邮件,要求邮件标题为”help”,邮件正文如下:
Hello, I am 用户名,the system version is here,pleasehelp me to check it ,thanks!
操作系统版本信息
[mageedu@localhost ~]$ mail -s "help" root << end
4、将/root/下文件列表,显示成一行,并文件名之间用空格隔开
[root@localhost ~]# ls | tr ‘\n‘ ‘ ‘ > root.txt
5、file1文件的内容为:”1 2 3 4 5 6 7 8 9 10” 计算出所有数字的总和
[root@localhost ~]# tr ‘ ‘ ‘+‘ < file1 | bc
[root@localhost ~]# echo "1 2 3 4 5 6 7 8 9 10" | tr ‘ ‘ ‘+‘ | bc
6、删除Windows文本文件中的‘^M‘字符
[root@localhost ~]# cat file.txt | tr -d "\r" > newfile.txt
7、处理字符串“xt.,l 1 jr#!$mn2 c*/fe3 uz4”,只保留其中的数字和空格
[root@localhost ~]# echo ‘xt.,l 1 jr#!$mn2 c*/fe3 uz4‘ | tr -d ‘[[:alpha:]][[:punct:]]‘
[root@localhost ~]# echo ‘xt.,l 1 jr#!$mn2 c*/fe3 uz4‘ | tr -cs ‘[[:digit:]]‘ ‘ ‘
8、将PATH变量每个目录显示在独立的一行
[root@localhost ~]# echo $PATH | tr ‘:‘ ‘\n‘
9、删除指定文件的空行
[root@localhost ~]# tr -s ‘\n‘ < issue
10、将文件中每个单词(字母)显示在独立的一行,并无空行
[root@localhost ~]# tr -cs ‘[:alpha:]‘ ‘\n‘ < issue
原文地址:http://groot.blog.51cto.com/11448219/1833160