Development

Save Linux command output to file

When running a command in SSH the outcomes and/or actions get displayed in the terminal. Certain commands spill over too many lines and get cut off, the solution to this is outputting the command to a file.

Saving this output can also be of use multiple times rather than needing to run the same command over and over again.

Redirecting and saving an output to a file is done with the > symbol:

command > outputfile.txt

Example that saves the df -h output:

df -h > diskspace.txt

To append (place below existing content in file):

df -h >> diskspace.txt

If you want the output in the console aswell as an output file use 2>

df - h 2> diskspace.txt

Save the output along with stderr (errors) use &> or &>> to append the output.

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago