Last active
March 8, 2018 18:22
-
-
Save mr-rigden/63e261e71830debeb9215f4d651f8ac4 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
| #!/bin/bash | |
| read -p "Should we change our MAC address?" -n 1 -r | |
| echo | |
| if [[ $REPLY =~ ^[Yy]$ ]] | |
| then | |
| echo "change MAC" | |
| fi | |
| sudo wifi-menu | |
| sudo mount 192.168.1.12:/mnt/MyBook/Teletraan_I /home/jason/temp/disk6 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment