我喜欢学习如何使用 、 和 bash 修改awk
文件sed
。但是,我知道这可能会导致问题出现,我想准备一份日志文件里面。我正在考虑修改文件后如何在页脚中创建日志.html
,但我不确定该过程的名称或名称。我希望能够执行以下操作:
line break after the very last line of code
comment tag <!--
each item modifed on a line
end comment tag -->
例子:
<html>
<head>
</head>
<body>
<div class="example">This is before script</div>
</body>
<html>
<html>
<head>
</head>
<body>
<!--<div class="example">This is after script</div>-->
</body>
<html>
<!--
Change date 2012-12-20 13:13
Commented out example
-->
答案1
听起来您正在寻找一种非常粗略的版本控制形式。你最好考虑使用像这样的VCSgit
。
安装完成后git
,执行您想要的操作非常简单:
git init # Initialise the new repository
# ... change some files ...
git add file1 file2 # Add files to context
git commit -m 'Changed something' # Commit (think "restore point")
然后,您可以根据需要使用git log
和来查看以前的提交git show
。