We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Middle of a Text File
Middle of a Text File
Sort by
recency
|
109 Discussions
|
Please Login in order to post a comment
What the heck why they are using tail command in this exercice
head -n 22 | tail -n 11
(`x=1
while read line
do
if [[ x -lt 23 ]]
then
echo ${line}
fi
x=$((x+1))
done