一、问题描述
How would you print just the 10th line of a file?
For example, assume that file.txt has the following content:
Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Line 10
Your script should output the tenth line, which is:
Line 10
二、问题分析
三、shell代码
# Read from the file file.txt and output the tenth line to stdout.
declare -i count=0 #声明count为整形变量
cat file.txt | while read line
do
let count++; #使count加1
if [ $count -eq 10 ]; then
echo $line
fi
done
本文介绍了一个简单的Shell脚本,该脚本能够从指定文件中读取并输出第10行的内容。通过使用`cat`、`while`循环及条件判断等基本Shell命令,展示了如何实现这一功能。
399

被折叠的 条评论
为什么被折叠?



