Add trim command

This commit is contained in:
2026-07-09 17:43:50 +02:00
parent 75b32eb34c
commit 3e41a0c057
+6
View File
@@ -20,3 +20,9 @@ Generare una chiave crittografica e salvarla in `/etc/zabbix/agent.psk`:
```bash ```bash
openssl rand -hex 32 | tee /etc/zabbix/agent.psl openssl rand -hex 32 | tee /etc/zabbix/agent.psl
``` ```
### Trim
Opzionalmente, eliminare tutte le righe commentate per accorciare il file.
```bash
sed -iE '/^#|^$/d' local.conf
```