In this challenge, we practice using the tail command to display the last n lines of a text file.
Display the last 20 lines of an input file.
tail -n 20
In this challenge, we practice using the tail command to display the last 20 characters of a text file.
Display the last 20 characters of an input file.
tail -c 20
Last updated 2 years ago