You are viewing a single comment's thread. Return to all comments →
#!/bin/bash rm file.txt > stdout.tx 2> stderr.txt while read LINES; do echo $LINES >> file.txt done tail -n20 < file.txt
Seems like cookies are disabled on this browser, please enable them to open this website
Tail of a Text File #1
You are viewing a single comment's thread. Return to all comments →