HI,
I know that cat
prints the contents of the file on screen.
i never worked on linux.But i am aware that tac
is the command to show the file from bottom to top.I am not even sure whether tac is on unix.Atleast on my unix box its not present.
i want to know is there a simple command unix which gives the output from bottom to top?
i am expecting like below :
<command> file_name;
I know this can be done using some tools like awk
,sed
.
but could anyone please tell me a most simple command to perform that task?