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
echo "https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-16-04" | |
echo -n "Skip nginx (y/N)? " | |
read inginx | |
if [ "$inginx" != "${inginx#[Yy]}" ] ;then | |
echo "nginx skipped" | |
else | |
echo "installing nginx" | |
sudo apt-get update | |
sudo apt-get install nginx | |
echo "press q to quit less" |
NewerOlder