You are viewing a single comment's thread. Return to all comments →
(`x=1
while read line
do
if [[ x -lt 23 ]]
then
echo ${line}
fi
x=$((x+1))
done
Seems like cookies are disabled on this browser, please enable them to open this website
Middle of a Text File
You are viewing a single comment's thread. Return to all comments →
(`x=1
while read line
do
if [[ x -lt 23 ]]
then
echo ${line}
fi
x=$((x+1))
done