感谢帮忙!
我想要一个shell脚本来读取txt文件中的最后一个值。我有这个(另一个脚本)从python脚本工作,但这在shell脚本中不起作用。我发现了一些帮助脚本部分(在stackoverflow上)我不能让它工作。
如何将最后一个值从txt文件(temper.txt)读入shell脚本?
txt文件:
1
2
3
4
5
6
7
Shell脚本:
#!/bin/bash
# Domoticz server
SERVER="192.168.0.30:8080"
# IDX DHT
# The number of the IDX in the list of peripherals
DHTIDX="1"
# temp file with the counting
TMPFILE="/var/tmp/temper.txt"
# old piece of the script. not used
#sudo nice -20 Adafruit_DHT 2302 $DHTPIN > $TMPFILE
# 5 seconds for testing
sleep 5
# piece of the script where I want to read the last value form the TEMPFILE!
PULS=$(cat $TMPFILE|grep .... last value... |awk '.... last value ....' |sed -r 's/^.*=//' | sed -r 's/\*//')
echo "PULS: $PULS"
# send data
curl -s -i -H "Accept: application/json" "http://$SERVER/json.htm?type=command¶m=udevice&idx=$DHTIDX&nvalue=0&svalue=$PULS"
PULS=""
#rm $TMPFILE
exit 0
fi
echo "CPT: $cpt"
cpt=$(($cpt+1))
done
exit 1
答案 0 :(得分:0)
tail -1 <filename>
将输出文件中的最后一行。如果last value
表示last line
,那么这将有效。