Codice: Seleziona tutto
alessandro@darkstar:~$ /usr/sbin/hddtemp SATA:/dev/sda
WARNING: Drive /dev/sda doesn't appear in the database of supported drives
WARNING: But using a common value, it reports something.
WARNING: Note that the temperature shown could be wrong.
WARNING: See --help, --debug and --drivebase options.
WARNING: And don't forget you can add your drive to hddtemp.db
/dev/sda: MAXTOR STM3250820AS: 43°C or °FRingrazio danix85 per aver postato questo script che sto usando per visualizzare l'ip pubblico su conky:
Codice: Seleziona tutto
#! /bin/bash
# myip.sh - script che legge l'indirizzo ip dal sito "http://myip.dk/"
downloaddir=/home/danix/.scripts/myipdown/
ipnum=[0-9][0-9][0-9]\.[0-9][0-9][0-9]\.[0-9][0-9][0-9]\.[0-9][0-9][0-9]
if [[ ! -d $downloaddir ]]
then
mkdir $downloaddir
cd $downloaddir
else
cd $downloaddir
rm ./*
fi
wget -q http://myip.dk/
line=$(cat index.html | cut -d"
" -f4 |cut -b 17- |cut -d"<" -f1 -s)
echo $lineCodice: Seleziona tutto
if [[ ! -d $downloaddir ]]