SSH less command

When going through large text files usually the Linux cat command won’t do. This is where you can use the Linux less command with SSH instead. It is more of a predecessor and there are several jokes on the theme. This is featured on the cover of “Unix and Linux System Administration Handbook” and there’s also the joke: “I though you were more of a guy/gal”. In this article, we will show some basic usage of the SSH less command with examples.

Using SSH less command to view file’s contents

less myTextFile.txt

Using less as a pipe from output

cat largeTextFile.txt | less

While in less you’re actually in a different “mode” so to say, there are many shortcuts you can use to navigate back and forth, to view them you can use the help page

Using the Linux less command Help options

less --help

To exit less just press q

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Linux tar Command

The Linux tar command is used to compress and extract files to and from an archive. In this...

How to Install WordPress via SSH

Since WordPress is the most widely used CMS it’s installation process has been made as simple and...

SSH Execute Command on a Remote server

Via SSH you can connect to a remote server’s shell. This will allow you to execute commands on...

How to connect to your shared hosting account via SFTP with FileZilla

SFTP is a convenient way to use SSH, while also using the interface of a simple FTP. In order to...

SSH netstat command

If you wish to debug or track statistics of your network in a Linux environment you can use SSH...