在仿制一款模板时,发现CSS文件书写不规范,大小写交替使用,看起来实在不舒服。
方法1:
dd if=oldfile of=newfile conv=lcase
方法2:
awk '{print tolower($0)}' oldfile >newfile
方法3:
cat oldfile|tr A-Z a-z >newfile
原文链接:https://www.qiquanji.com/post/5282.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知