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 | |
| # | |
| # Program: install_wordpress.sh | |
| # Purpose: Installs WordPress (Tested on Ubuntu Server 16.04.2 LTS) | |
| # Date: 23/03/2017 | |
| # Author: Maxstupo | |
| # | |
| # Command Line Arguments: | |
| # $1 = the username for ownership of files (default: admin) | |
| # $2 = the new db user password (default: password) |
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 | |
| curl -s $1 | sudo bash /dev/stdin | |
| # Usage: bash run-from.sh <url-to-bash-script> |
NewerOlder