Project

General

Profile

Download (133 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#!/bin/sh
2

    
3
dmesgLine=`dmesg | grep "acpi_acad0"`
4
if test "${dmesgLine}" = ""; then
5
  echo "laptop: NO"
6
else
7
  echo "laptop: YES"
8
fi 
(1-1/20)