7 lines
107 B
Bash
7 lines
107 B
Bash
#!/bin/bash
|
|
if [[ $1 = pre ]]; then
|
|
btmgmt power off
|
|
elif [[ $1 = post ]]; then
|
|
btmgmt power on
|
|
fi
|