Files
2022-11-03 19:39:01 -05:00

7 lines
107 B
Bash

#!/bin/bash
if [[ $1 = pre ]]; then
btmgmt power off
elif [[ $1 = post ]]; then
btmgmt power on
fi