View file content linux

Linux And Unix Command To View File

Linux And Unix Command To View File

Tutorial details
Difficulty level Easy
Root privileges No
Requirements Linux or Unix system
Est. reading time 2m
  • cat command
  • less command
  • more command
  • gnome-open command or xdg-open command (generic version) or kde-open command (kde version) – Linux gnome/kde desktop command to open any file.
  • open command – OS X specific command to open any file.

View a text file called foo.txt on a Linux or Unix-like systems

Open the Terminal application and type the following command to view a text file called foo.txt using cat command:
cat foo.txt
OR
cat /etc/resolv.conf
Sample outputs:

You can also use more or less command as follows:

gnome-open: Open files and directories/urls

The gnome-open command opens a file (or a directory or URL), just as if you had double-clicked the file’s icon. The syntax is:

If you are using KDE desktop try kde-open command as follows:

Another option is to try out xdg-open command on Linux and Unix desktop:

If you are using OS X Unix try open command as follows:

How do I list the files in a directory on Unix?

To see or list the files in a directory on Linux, run ls command:
ls
ls -l
If you would like to see and list files in another directory, use the ls along with the path to the directory:
ls /usr/
ls -l /etc/
## just list resolv.conf file #
ls -l /etc/resolv.conf

  • No ads and tracking
  • In-depth guides for developers and sysadmins at Opensourceflare✨
  • Join my Patreon to support independent content creators and start reading latest guides:
    • How to set up Redis sentinel cluster on Ubuntu or Debian Linux
    • How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
    • How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
    • A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
    • How to protect Linux against rogue USB devices using USBGuard

Join Patreon

Common ls command options

The syntax is:
ls [options] file
Where options for ls are:

  • -l : Use a long listing format to display Linux/Unix file names.
  • -a : Do not ignore entries starting with . (period). Display all hidden files.
  • -d : List Linux directories themselves, not their contents
  • -R : List sub-directories recursively on Linux
  • -F : Append indicator for file. For example, / for directories, * for executable Linux files, @ for symbolic links and more

🐧 Get the latest tutorials on Linux, Open Source & DevOps via

Category List of Unix and Linux commands
Documentation help • mandb • man • pinfo
Disk space analyzers df • duf • ncdu • pydf
File Management cat • cp • less • mkdir • more • tree
Firewall Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04
Linux Desktop Apps Skype • Spotify • VLC 3
Modern utilities bat • exa
Network Utilities NetHogs • dig • host • ip • nmap
OpenVPN CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04
Package Manager apk • apt
Processes Management bg • chroot • cron • disown • fg • glances • gtop • jobs • killall • kill • pidof • pstree • pwdx • time • vtop
Searching ag • grep • whereis • which
Shell builtins compgen • echo • printf
Text processing cut • rev
User Information groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w
WireGuard VPN Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04

Comments on this entry are closed.

Sometimes the ‘ strings ‘ command is useful if the file is not all text. I seems to pull out text but leave the no text out.

Don’t forget: tac

Although I’ve yet to find a useful purpose for it

this sucks to high heaven,,linix is a pain in arse,,i dont know why anyone would use a fool system like this,,terminals suck,,i do mwean suck. terminals. idiots,,my windows got imploded,,i had to download this ubuntu,,i regret every god dam day of it,,i cant open any files,,cant open downloads or find them,,cant do anything on this. i dont know how or where to look,,terminal. /what the f is that,,how do you work it,,i checked on how to work this. just god dam crap,,you have to go to a college for hackers to know what all this shit is to work your browser,l. who ever made this for the common people. LIED,LIED. this is not for peopole,,its for hackers,,i tried to load windows on it,,it dont even let the software load,,i gues i9 have to delete this shit and then download,,this is shit,,i cant open a zip file,,i go to terminal and dont know what the fuck in doing in terminal. i check and forum say to put in different signalas or symbols i never seen before,,screw this and the dog it road in on. you ubuntu people are a bunch of crooks wanting to charge free for this. yes free is way to much money for this.

The cake is a lie.

The article on the other hand is great. Might use the addition of the most commonly used parameters.
Anyway, thanks. I was like “more” (mooar) 🙂 but forgot that you’re often satisfied with “less”

Hi
thanks a lot

Very useful and handy command to open and view files on Ubuntu desktop. thank you very much

Источник

5 Commands to View the Content of a File in Linux Command Line

If you are new to Linux and you are confined to a terminal, you might wonder how to view a file in the command line.

Reading a file in Linux terminal is not the same as opening file in Notepad. Since you are in the command line mode, you should use commands to read file in Linux.

Don’t worry. It’s not at all complicated to display a file in Linux. It’s easy as well essential that you learn how to read files in the line.

Here are five commands that let you view the content of a file in Linux terminal.

5 commands to view files in Linux

Before you how to view a file in Unix like systems, let me clarify that when I am referring to text files here. There are different tools and commands if you want to read binary files.

1. Cat

This is the simplest and perhaps the most popular command to view a file in Linux.

Cat simply prints the content of the file to standard display i.e. your screen. It cannot be simpler than this, can it?

cat displays the content of the file on the screen

Cat becomes a powerful command when used with its options. I recommend reading this detailed tutorial on using cat command.

The problem with cat command is that it displays the text on the screen. Imagine if you use cat command with a file that has 2000 lines. Your entire screen will be flooded with the 200 lines and that’s not the ideal situation.

So, what do you do in such a case? Use less command in Linux (explained later).

The nl command is almost like the cat command. The only difference is that it prepends line numbers while displaying the text in the terminal.

nl command displays text with line numbers

There are a few options with nl command that allows you to control the numbering. You can check its man page for more details.

3. Less

Less command views the file one page at a time. The best thing is that you exit less (by pressing q), there are no lines displayed on the screen. Your terminal remains clean and pristine.

I strongly recommend learning a few options of the Less command so that you can use it more effectively.

There is also more command which was used in olden days but less command has more friendly features. This is why you might come across the humorous term ‘less is more’.

4. Head

Head command is another way of viewing text file but with a slight difference. The head command displays the first 10 lines of a text file by default.

You can change this behavior by using options with head command but the fundamental principle remains the same: head command starts operating from the head (beginning) of the file.

5. Tail

Tail command in Linux is similar and yet opposite to the head command. While head command displays file from the beginning, the tail command displays file from the end.

By default, tail command displays the last 10 lines of a file.

Head and Tail commands can be combined to display selected lines from a file. You can also use tail command to see the changes made to a file in real time.

Bonus: Strings command

Okay! I promised to show only the commands for viewing text file. And this one deals with both text and binary files.

Strings command displays the readable text from a binary file.

No, it doesn’t convert binary files into text files. If the binary file consists of actual readable text, strings command displays those text on your screen. You can use the file command to find the type of a file in Linux.

Conclusion

Some Linux users use Vim to view the text file but I think that’s overkill. My favorite command to open a file in Linux is the less command. It leaves the screen clear and has several options that makes viewing text file a lot easier.

Since you now know ways to view files, maybe you would be interested in knowing how to edit text files in Linux. Cut and Paste are two such commands that you can use for editing text in Linux terminal. You may also read about creating files in Linux command line.

Источник

Guide to Unix/Commands/File Viewing

Contents

cat [ edit | edit source ]

cat displays the contents of a file to screen. It can also display multiple files concatenated together, and using the shell, its standard output can be redirected from the screen to the file.

Some useful options are:

Concatenating multiple files (in this example, the same file twice):

Concatenate the files, but use the shell to redirect the result to a new file.

We can concatenate binary files, too. Some programs limit downloads to 2 GB; this is bad for larger files like some DVD images. Suppose a web site helpfully divides the file «sodalinux.dvd» into three parts, 2 GB or less, for downloading and later concatentation. We combine the files, and use the > shell redirection output to put the DVD image in a file:

If we want to type less, then most shells also allow this:

The -v option is useful for viewing control characters embedded mostly in text. In this example, the file «/usr/share/man/cat1/pax.0» is mostly text but contains control characters which the pagers «less» and «more» use to make text bold. Using cat -v we can see the control characters. Here are the first four lines:

Using «cat» with no arguments makes it copy standard input to standard output. Combined with shell redirection, this makes it easy to write a very short text file. All one needs to know is to press Control-D (^D) to indicate end of input, finish the file, and return to the shell. Here is how to write «example.txt»:

If you put «cat» with no arguments in a pipe, it only copies standard input to standard output. This might seem useless. For example, the following two pipes have the same function:

However, «cat» can be used as insulation to make programs think that they are not running on terminals. In the next example, GNU bc does not print its copyright message on startup. We enter one calculation («3 + 9») and then quit (^D):

tac [ edit | edit source ]

tac (cat spelled backwards) works like cat, but reverse the order of the lines (last line is written out first). It does not seem to be part of traditional Unix. When multiple files are given, they are printed out in the order they appear.

more [ edit | edit source ]

more paginates output. The problem with «cat» is that if a file is too long, then it falls beyond the top of the screen. The job of «more» is to stop and wait when it fills the screen. Most users find it easier to use «less», but on some systems «more» has all of the features of «less».

  • return read next line
  • space bar read next screen
  • q quit

Examples: The pager will act like «cat» if the file is short enough.

less [ edit | edit source ]

less paginates output. The program is called «less» because of the joke that «less is more», «less» actually has several features which «more» lacks.

  • h read help. You might forget the other commands, but remember this one!
  • j go down one line. The down-arrow key might also work.
  • k go up one line. The up-arrow key might also work.
  • d go down one-half screen.
  • u go up one-half screen.
  • f go forward one screen.
  • b go back one screen.
  • p return to the top of the file.
  • q quit the pager.
  • 0 through 9: type a number. The number will be used as the argument N to the next command.
  • j go down N lines.
  • k go up N lines.
  • p jump to the N% position, where 0% is the first line and 100% the last line of the file.

Pipe «dmesg» into «less» so that the dmesg does not scroll off the screen:

od [ edit | edit source ]

Lets you view binary files by outputting octal representation, hexadecimal representation and more. See also Od.

View a file in octal format:

View a file in hex format:

View a file in character format:

  • od, opengroup.org
  • od man page, man.cat-v.org
  • 3.4 od in GNU Coreutils manual, gnu.org

head [ edit | edit source ]

head displays 10 lines or other count of lines from the head (top) of a given file. See also tail, outputting last lines.

  • head wordlist.dat
    • Outputs first 10 lines of the file.
  • head -2 wordlist.dat
    • Outputs first 2 lines of the file.
  • seq 10 | head -n -2
    • In GNU head, outputs all but the last 2 lines of the input stream, in this case of 1 . 10. A GNU extension not supported by POSIX.
  • head, opengroup.org
  • 5.1 head in GNU Coreutils manual, gnu.org

hexdump [ edit | edit source ]

Hexdump is a command-line tool used to show the raw bytes of a file in various ways including hexadecimal, available on Linux, FreeBDS, OS X, and other platforms. Hexdump is not part of traditional Unix systems or GNU commands, and does not seem to be covered by POSIX. A similar tool is #od.

Examples of hexdump use:

  • hexdump -v -e ‘»» 1/1 «%02X» » «‘ myfile
    • Shows the bytes in hexadecimal using capitalized letters, each byte separated by a space. The first «» specifies and empty prefix, while the last » » specifies a single-space suffix.

tail [ edit | edit source ]

tail displays last 10 lines of the file

Display the bottom two lines:

Tips: The -f option displays the tail, then waits for and displays any new options to the file. This is normally used to watch log files. (The next example has only three lines from tail, but the 80-column terminal was too narrow, so the lines were broken into five lines.)

Источник

Читайте также:  Windows 10 двойной клик не работает
Оцените статью