⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 temperaturegetlast.txt

📁 这是《嵌入式linux-硬件、软件与接口》一书对应的所有linux方面实例的源代码
💻 TXT
字号:
#!/bin/bash
# temperatureGetLast v1.0 12/31/01
# www.embeddedlinuxinterfacing.com
#
# The original location of this code is
# http://www.embeddedlinuxinterfacing.com/chapters/12/
#
# Copyright (C) 2001 by Craig Hollabaugh
#
# This program is free software; you can redistribute it and/or modify
# it however you want.
#
# temperatureGetLast 
# temperatureGetLast is a CGI script. A field target board or web service
# sends an HTTP request with a Trailblazer location number 
# as a parameter. Apache calls this script setting the $QUERY_STRING 
# variable to the location number. This script forms a SELECT statement 
# that returns the last recorded temperature for that location. 
#
# Here's the header/content blank separation line required by Apache
echo

# Set the location
location=$QUERY_STRING


# Form the SELECT statement and pipe it to mysql.
# You have to login in to mysql as trailblazer with
# password tb because apache will execute this script as 
# user www-data not root.
echo "SELECT temperature from temperatures where location = $location \
      order by timestamp desc limit 0,1" | \
      mysql trailblazer --user=trailblazer --pass=tb --silent


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -