shell 输出文件各行的长度
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 输出文件各行的长度相关的知识,希望对你有一定的参考价值。
test.sh
#!/bin/bash string="hello,shell,split,test" array=($string//,/ ) for var in $array[@] do echo $var done
输出
bogon:conf macname$ awk ‘print length($0)‘ test.sh 11 33 24 1 22 2 12 4
参考:
https://www.jb51.net/article/121290.htm
以上是关于shell 输出文件各行的长度的主要内容,如果未能解决你的问题,请参考以下文章
求一段perl或者shell程序,用来计算一个文件中某段字符的长度有多长。