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
|
105 Discussions
|
Please Login in order to post a comment
(`x=1
while read line
do
if [[ x -lt 23 ]]
then
echo ${line}
fi
x=$((x+1))
done
awk '22>=NR && NR>=12 {print $0}'
head -22 | tail +12