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.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…