linux shell中如何获取单行文本字符数?例如,我想知道test.txt第四行有多少个字符,该怎么做?
展开全部
#!/bin/bash
echo "input the linenumber"
read linenumber
count=1
cat myfile | while read line
do
if [ $linenumber -eq $count ];
then
echo "$line"
echo "$line"| wc -c
fi
count=$[ $count+1 ]
done
输出的结果应该比实际多1,因为wc命令每个换行符也算一个字符
echo "input the linenumber"
read linenumber
count=1
cat myfile | while read line
do
if [ $linenumber -eq $count ];
then
echo "$line"
echo "$line"| wc -c
fi
count=$[ $count+1 ]
done
输出的结果应该比实际多1,因为wc命令每个换行符也算一个字符
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
sed -n ‘4p’ test.txt | wc -m
注意:字符数目包含行尾的一个换行符。
注意:字符数目包含行尾的一个换行符。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
vim test.sh
sed -n '4p' test.txt|wc -c
chmod +x test.sh
./test.sh
sed -n '4p' test.txt|wc -c
chmod +x test.sh
./test.sh
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
cat test.txt|sed -n ‘4p’ |wc -c
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询