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
""" | |
This script checks through all the 'ChiselMessages' files, one for each | |
map, and purges old or disliked Soapstone message. It will make a | |
backup of each file before removing any engravings. | |
------------------------------------------------------------------------ | |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled |
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 | |
# | |
# Usage: curl -L wsl.crossedfall.io | bash | |
# | |
### Initial setup for pyenv ### | |
if [ ! -f ~/.bash_functions ]; then | |
echo -e "export PATH=\"$HOME/.pyenv/bin:$PATH\"\neval \"\$(pyenv init -)\"\neval \"\$(pyenv virtualenv-init -)\"" >> ~/.bashrc | |
touch ~/.bash_functions | |
echo -e "export PATH=\"$HOME/.pyenv/bin:$PATH\"\neval \"\$(pyenv init -)\"\neval \"\$(pyenv virtualenv-init -)\"" >> ~/.bash_functions |