10 lines
150 B
Bash
10 lines
150 B
Bash
#! /bin/bash
|
|
|
|
mkdir -p /var/www/html
|
|
|
|
cat > /var/www/html/index.html << EOF
|
|
<html>
|
|
<p id="p1" style="color: ${1:-red}">Hello World</p>
|
|
</html>
|
|
|
|
EOF |