InterviewSolution
Saved Bookmarks
| 1. |
You Have A Large Text File, And You Need To See One Page At A Time. What Will You Do? |
|
Answer» You can ACHIEVE the above RESULT by PIPELINE the output of ‘cat file_name.txt’ with ‘more’ COMMAND. [ROOT@localhost ~]# cat file_name.txt | more You can achieve the above result by pipeline the output of ‘cat file_name.txt’ with ‘more’ command. [root@localhost ~]# cat file_name.txt | more |
|