Old boy Education Daily-May 4, 2017-there is a oldboy.txt file that converts all the letters inside into uppercase file contents as follows:
[email protected] oldboy]# cat Oldboy.txt oldboy.blog.51cto.comwww.oldboyedu.com
Method One: SED
[[Email protected] oldboy]# sed ' s#[a-z]#\u& #g ' oldboy.txt oldboy.blog.51cto.comwww.oldboyedu.com
Method Two: awk
(ToUpper is the built-in function of awk, the function is to convert lowercase letters to uppercase, the corresponding conversion to lowercase is to replace the ToUpper function with the ToLower function)
[[email protected] oldboy]# awk ' {print ToUpper ($)} ' Oldboy.txt oldboy.blog.51cto.comwww.oldboyedu.com
Method Three: TR
[[Email protected] oldboy]# TR ' A-Z ' A-Z ' <oldboy.txt oldboy.blog.51cto.comwww.oldboyedu.com
Today is the 42nd Day of the day to accompany you and look forward to your progress .
For questions and answers, please leave a comment in the blog comments section .
Index of the topic of the previous period
http://lidao.blog.51cto.com/3388056/1914205
This article is from the "Lee blog" blog, make sure to keep this source http://lidao.blog.51cto.com/3388056/1922043
Old boy Education Daily-May 4, 2017-there is a oldboy.txt file that converts all the letters inside to uppercase