Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
service
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
Freenet DSL
Who's Online
16 user(s) are online (14 user(s) are browsing encyclopedia)

Members: 0
Guests: 16

more...
partner

Less (Unix)

less is a Computer program on Unix and Unix-like systems used to view (but not change) the contents of a text Computer file one screen at a time. It is similar to more (Unix), but has the extended capability of allowing both forward and backward navigation through the file. Unlike Vi (which can also be used to view files), less does not need to read the entire file before starting, resulting in faster load times with large files. The command-syntax is:

less [options]

less can be invoked with options to change its behaviour, for example, the number of lines to display on the screen. These options may vary from one Unix to another. While less is displaying the file, various commands can be used to navigation through the file. These commands are based on those used by both more and vi. It is also possible to search for character patterns in the file. See the less manual for details.

By default, less displays the contents of the file to the standard output (one screen at a time). If the output is redirected to anything other than a Computer terminal, or Pipeline (Unix) to another command, less behaves like cat (Unix).

less was written by Mark Nudelman in 1999 as part of the GNU project and is now included in most Unix systems.