You want to run the `lshw` command locally on your Proxmox hypervisor and then transfer the output to your web server. You can achieve this by using the `scp` command to securely copy the file from your Proxmox hypervisor to your web server. Here's how you can do it:
lshw > lshw.txt && scp lshw.txt facundo@srv00.facundoitest.space:/home/facundo/pve1lshw.txt
Explanation of the command:
This command will execute `lshw` locally on your Proxmox hypervisor and then transfer the output file `lshw.txt` to your web server.
Once the output of the `lshw` command is transferred to the remote server, you can access it from anywhere with appropriate permissions.
For more details on using `lshw` and `scp`, refer to their respective man pages (`man lshw` and `man scp`).