
If you know other similar tools, do not hesitate to write them in the comments section below. For small files, you can use the less command, or the echo command. You have seen some simple utilities that allow you to display a text file on the command line.

#KNOTES FILES UMBUNTU HOW TO#
Read: How to send one-liner emails from Linux/Ubuntu terminal It is very similar to installation in windows.
#KNOTES FILES UMBUNTU INSTALL#
To install an application from a deb file, simply download it and double-click it to run. They make deb file and make available to dowload from their websites.

You can even perform a search on the text. 3Deb file:-Sometimes developers prefer not to keep their software in the repositories. You also have the possibility to scroll forwards and backwards through the text. The text is shown one screenful at a time. The more command enables you to display the contents of text files in a scrollable manner. Using headĪpplying head to the file output_in_html will give the following result : Which displays the last lines of the provided file. Īpplying tail to the file output_in_html will give the following result : Much like the previous command, the parenthesis ( ) are used to return the value of a given expression which in this case, is the contents of file_name. Read: How to display Images in the command line in Linux/Ubuntu

The parenthesis ( ) are used to return the value of a given expression which in this case, is the contents of file_name. This is a pager which is useful to view long files for instance:įor instance the command below will display the content of the file output_report.txt :īy passing the -F and -X switches, less can behave like cat when applied to small files but will act normally otherwise.Īpplying cat to the same file that we used above. In this short tutorial, we cover see some simple commands that will help users learn how to open a file in linux or view its contents on the command line.
