To display files on the standard output (your screen), use:
cat file(s)
For example, let's display the contents of the file
/etc/passwd.
This system file describes users' accounts.
(Your system may have a more complete list somewhere else.)
$ cat /etc/passwd
root:x&k8KP30f;(:0:0:Root:/:
daemon:*:1:1:Admin:/:
.
.
.
john::128:50:John Doe:/usr/john:/bin/sh
$
You cannot go back to view the previous screens, as you can when
you use a pager program such as less
(unless you're using a terminal window with a scrollbar, that is).
cat is mainly used with redirection,
as we'll see in a moment.
By the way:
if you enter cat without a filename,
it tries to read from the keyboard (as we mention earlier).
You can get out by pressing RETURN followed by a single
CTRL-D.