Skip to content

Instantly share code, notes, and snippets.

@louisbuchbinder
Created June 6, 2016 02:16
Show Gist options
  • Save louisbuchbinder/8c808c0e5f29641580c25c5feea1515e to your computer and use it in GitHub Desktop.
Save louisbuchbinder/8c808c0e5f29641580c25c5feea1515e to your computer and use it in GitHub Desktop.
Initialize html repo
#!/bin/bash
html="
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
<script src="app.js"></script>
</body>
</html>
"
printf "$html" > index.html
touch app.js
touch app.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment