Files
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

16 lines
294 B
Bash

#! /bin/sh
HOSTNAME=$(hostname)
IP=$(hostname -I)
MAC=$(cat /sys/class/net/eth0/address)
echo "Device Information:" > file.txt
echo ">HOST:" >> file.txt
echo " $HOSTNAME" >> file.txt
echo ">IP:" >> file.txt
echo " $IP" >> file.txt
echo ">MAC:" >> file.txt
echo " $MAC" >> file.txt
exit 0