作业7月20日
1、将/etc/issue文件中的内容转换成大写后保存到/tmp/issue.out中
cat /etc/issue |tr [a-z] [A-Z] > /tmp/issue.out
2、将当前系统登录用户的信息转换为大写后保存至/tmp/who.out文件中
w | tr [a-z] [A-Z] > /tmp/who.out
3、一个linux用户给root发邮件,要求邮件标题为“help”,邮件正文如下:Hello ,I am 用户名,the system version is here,please help me to check it,thanks!
mail -s "help" root << END >hello ..... thanks
4、将/root/下文件列表,显示成一行,并文件名之间用空格隔开
ls /root > file2 tr '\n' ' ' < file2
5、file1文件的内容为:“1 2 3 4 5 6 7 8 9 10”计算出所有数字的总和
echo "1 2 3 4 5 6 7 8 9 10" > file1 tr ' ' '+' < file1 | bc
6、删除Windows文本文件中的'^M'字符
cat nihao.txt | tr -d '^M'
7、处理字符串“xt.,1 jr#!$mn 2 c*/fe 3 uz 4”,只保留其中的数字和空格
touch file6 vim file6 cat file6 xt.,1 jr#!$mn 2 c*/fe 3 uz 4 tr -d [[:punct:]][[:alpha:]] < file6 1 2 3 4
8、将PATH变量每个目录显示在独立的一行
[root@localhost ~]# echo $PATH > file8 [root@localhost ~]# tr ':' '\n' < file8
9、删除指定文件的空行
[root@localhost ~]# tr -s "[[:space:]*]" < 123
10、将文件中每个单词(字母)显示在独立的一行,并无空行
cat /etc/issue | tr '[[:space:]]' '\n'
转载于:https://blog.51cto.com/11541229/1832122