Linux CLI - Viewing and Editing Files
Which of the following is the correct command to follow the last 20 lines of a log file
app.log live?app.log live?tail-n must specify number of lines, and -f to follow live.tail -n 20 -f app.log is correct; -20 is invalid; options after filename are wrong.-n before -f for line count with follow [OK]-20 instead of -n 2015+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions