Files
2024-07-11 14:16:35 +02:00

10 lines
148 B
Bash

#!/bin/sh
script -qc "su -c 'hciconfig hci0 up || echo ko > /tmp/ble'"
if [ -e /tmp/ble ]; then
rm -f /tmp/ble
exit 1;
else
exit 0;
fi