https://leetcode.com/problems/tenth-line/description/
#
cnt=0
while read line && [ $cnt -le 10 ];
do
let 'cnt = cnt + 1'
if [ $cnt -eq 10 ]; then
echo $line
exit 0
fi
done < file.txt
#use AWK
awk '{if(NR==10) print $0}' file.txt
awk 'FNR == 10 {print }' file.txt
awk 'NR == 10' file.txt
#use sed
sed -n 10p file.txt
#use tail
tail -n+10 file.txt|head -1
No comments:
Post a Comment