Skip to content

Instantly share code, notes, and snippets.

@yuchan
Created October 20, 2011 02:41
Show Gist options
  • Save yuchan/1300283 to your computer and use it in GitHub Desktop.
Save yuchan/1300283 to your computer and use it in GitHub Desktop.
#! /bin/sh
#
# Make arbitrary directries, and execute this scripts.
# that's all. write your HTML5 Application!
#
{
cat <<EOF
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href"css/style.css" />
</head>
<body>
</body>
</html>
EOF
} > index.html
mkdir css js
touch css/style.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment