我正在创建一个shell脚本.sh。
我现在需要创建一个html文件,并添加一个完整的html5模板的html并与之相同。
因此...
sh myshfile.sh
touch index.html
...添加html5模板的html
例如......创建一个html文件并添加:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>
...通过shell脚本。
我该怎么做?
答案 0 :(得分:0)
您可以使用以下方法之一。
如果模板的内容存储在文件中,
cat template.html > index.html
如果要将内容存储在脚本本身中,那么
echo "<html><h1>This is a test</h1></html>" > index.html
不要忘记使用\"