To display multiple lines using the tail command, you can specify the number of lines you want to see with the -n option followed by the number of lines.
Example:
To display the last 5 lines of a file, you would use:
tail -n5 /tmp/hello
This command will output the last 5 lines from the file located at /tmp/hello.
If you have any more questions or need further assistance, feel free to ask!
