Created
August 24, 2014 23:11
-
-
Save JamesHovious/3d3f1e027c60be27de87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _IP=$(hostname -I) | |
| # Make device discoverable | |
| hciconfig hci0 piscan | |
| # Set device name | |
| hciconfig hci0 name 'My IP is '"$_IP" | |
| # Wait 30 seconds | |
| sleep 30 | |
| # Make device not discoverable | |
| hciconfig hci0 noscan | |
| exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment