16 lines
262 B
Bash
Executable file
16 lines
262 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cat << 'HTML'
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>title</title>
|
|
<!-- <link rel="shortcut icon" href="/favicon.ico"> -->
|
|
<!-- <link rel="stylesheet" href="style.css"> -->
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|
|
HTML
|