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
+ 0 comments #!/bin/bash rm file.txt > stdout.tx 2> stderr.txt while read LINES; do echo $LINES >> file.txt done (head -n22 | tail -n11) < file.txt
+ 0 comments head -n 22 | tail -11
+ 0 comments tail +12 | head -n 11
+ 0 comments head -22 | tail -11
+ 0 comments head -n 22 | tail -n +12
Load more conversations
Sort 92 Discussions, By:
Please Login in order to post a comment