Hi Friends, Welcome to Blog , Welcome to Linux . Now first question you may ask yourself why we should learn command line, even if we have GUI ? So, Simple answer is that GUI ( Graphical User Interface ) is helpful in many task but not useful in all task, and when you learn command, you will observe that you are able to do your day to day task or any task related to programming much faster that you can do with GUI . By using command you can able to see what happening in a background when you given a something task. Before dive into the world of Linux you should know two terms i.e., Shell and Terminal. Now what is Shell? Shell is a simply a program that takes inputs from the keyboard and gives that to the operating system to perform task.It is also called as CLI ( Command Line Interface ), Now the second term is Terminal, terminal is tool which is used to pass a shell command, this is a program that open up a window and lets interacts with shell. There are different operating...
Welcome to the Linux command line Tutorials, In this blog we will going to learn how we can use less command in Linux and what are the functions performed by the less command. Lets see what is less command and why we use less command, Less command is used to read files, search anything in content of file or search any pattern or any word, So,lets see how we can do it. First, Open Terminal Ctrl+Alt+t . Suppose a file contain data or content and if we want to read that content then we use cat command as we learn earlier but problem is occurred when data or content is very large in size and terminal does not allow as to read data from the starting, to resolve such type of problem we will use less command in this way : less [file_name] 1. Now terminal shows you content up to it allows to display, and if you want to see more content you can use down key which will move content by one line downward and same for upward key also. 2. Now, if you want to see content ...