This file contains 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 | |
# | |
# Created: 2017-07-02 22:44 | |
# Updated: 2018-04-17 10:38 | |
# Creator: Ryan Miller | |
# Website: http://devopsmachine.com/ | |
# File: ~/.bashrc (Add to file) | |
# | |
# Add git information to end of yor bash command prompt while inside a git directory! | |
# + Will show current branch as either green (clean) or yellow (uncommited changes) |
This file contains 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
country=us | |
update_config=1 | |
ctrl_interface=/var/run/wpa_supplicant | |
network={ | |
scan_ssid=1 | |
ssid="MyNetworkSSID" | |
psk="Pa55w0rd1234" | |
} |