• + 0 comments
    counter=0
    while read -r line;do
        counter=$((counter+1))
        if [ $counter == 4 ];then
            echo "$line"
            break
        fi
        
    done