Created
October 20, 2011 02:41
-
-
Save yuchan/1300283 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#! /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