Tweaking thinkfan-confgen a bit

This commit is contained in:
Dan Buch 2018-10-16 10:33:22 -04:00
parent b9e12d36e2
commit 570b35fa02
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

View File

@ -1,7 +1,14 @@
#!/usr/bin/env bash
set -o errexit
set -o pipefail
main() {
if [[ -f "${1}" ]]; then
exec 1>"${1}"
fi
printf "# thinkfan-confgen created %s\n" "$(date -u)"
find /sys -type f -name 'temp*_input' | while read -r line; do
echo "hwmon ${line}"
done