answersLogoWhite

0


Best Answer

tail -n 10 abc

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

tail filename

will do that for you

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which command displays the last 10 lines of the file called abc?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What Linux command displays the last part of a file without editing it?

The tail command can be used to output the last part of a text file. The default is to show the last 10 lines of a file and options are available to override this.


What does the file command tab do?

it displays the ribbon tab


Which command will display the last lines of the text file called file1in Linux?

Tail command is used to display the last lines of the file.Syntax:tail -n 3 file1-n 3 = no. of linesfile1 = filename


Which command allows you to view your file 24 lines at a time?

more command


What command is used to sort the lines of data in a file alphabetical order?

The "sort" command.


Which command displays the contents of file specified in UNIX?

The 'cat' command is typically used for this purpose, although there are numerous varieties of this command that may do similar things.


What option would allow the head command to display the last 5 lines in a file in Linux?

The 'head' command can only deal with the start of the file, not the end. If you want X number of lines at the end of the file then use the 'tail' command. tail -5 filename will list the last 5 lines of the contents of filename.


Do word displays the file name of the document only on the title bar at the top of the screen?

command box


What Command displays or changes the read only archive system and hidden characteristics of files?

file attrib


Which command line tool displays an objects properties onscreen by default but can redirect output to a file?

DSGET


Simplest utility for viewing file content?

The simplest utility for viewing file content in the Linux Terminal, (Terminal as command promt also called DOS in Windows) its called the file command. The simplest utility for viewing file content in the Linux Terminal, (Terminal as command promt also called DOS in Windows) its called the file command.


What is the unix command to display the first two characters of all the lines from a file?

Assuming that the file you are looking at is a columnar file you can use the 'cut' command, as in 'cut -c1-2 filename'