Skip to content

Commit 9810a38

Browse files
committed
test
1 parent a12f97c commit 9810a38

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1>sin-coder</h1>
6262
<ul class="posts-list">
6363

6464
<li class="posts-list-item">
65-
<a class="posts-list-item-title" href="https://sin-coder.github.io/linux/text/">Text</a>
65+
<a class="posts-list-item-title" href="https://sin-coder.github.io/linux/text/">Linux文本处理命令总结</a>
6666
<span class="posts-list-item-description">
6767
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-clock">
6868
<title>clock</title>

index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
<item>
15-
<title>Text</title>
15+
<title>Linux文本处理命令总结</title>
1616
<link>https://sin-coder.github.io/linux/text/</link>
1717
<pubDate>Fri, 24 Apr 2020 19:55:33 +0800</pubDate>
1818

linux/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1>Linuxes</h1>
6262
<ul class="posts-list">
6363

6464
<li class="posts-list-item">
65-
<a class="posts-list-item-title" href="https://sin-coder.github.io/linux/text/">Text</a>
65+
<a class="posts-list-item-title" href="https://sin-coder.github.io/linux/text/">Linux文本处理命令总结</a>
6666
<span class="posts-list-item-description">
6767
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-clock">
6868
<title>clock</title>

linux/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
<item>
15-
<title>Text</title>
15+
<title>Linux文本处理命令总结</title>
1616
<link>https://sin-coder.github.io/linux/text/</link>
1717
<pubDate>Fri, 24 Apr 2020 19:55:33 +0800</pubDate>
1818

linux/text/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html lang="en-us">
33
<head>
4-
<title>Text // sin-coder</title>
4+
<title>Linux文本处理命令总结 // sin-coder</title>
55
<meta charset="utf-8" />
66
<meta name="generator" content="Hugo 0.59.1" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
@@ -11,7 +11,7 @@
1111

1212

1313
<meta name="twitter:card" content="summary"/>
14-
<meta name="twitter:title" content="Text"/>
14+
<meta name="twitter:title" content="Linux文本处理命令总结"/>
1515
<meta name="twitter:description" content="一、概述 Linux中的有关文本处理和分析的命令有很多,本节主要介绍几个使用比较频繁的命令:
1616
grep、sed、find、awk。其中每个命令的使用方式都是比较灵活的,命令的参数很多,选
1717
项也很多,但我们只需记住些常用的即可
@@ -35,7 +35,7 @@
3535
grep -n docker /var/log/log
3636
三、sed 1、用途简介 sed命令主要是利用脚本来处理文本文件,主要用来自动编辑一个或多个文件、简化"/>
3737

38-
<meta property="og:title" content="Text" />
38+
<meta property="og:title" content="Linux文本处理命令总结" />
3939
<meta property="og:description" content="一、概述 Linux中的有关文本处理和分析的命令有很多,本节主要介绍几个使用比较频繁的命令:
4040
grep、sed、find、awk。其中每个命令的使用方式都是比较灵活的,命令的参数很多,选
4141
项也很多,但我们只需记住些常用的即可
@@ -101,7 +101,7 @@ <h3><a href="/personal/introduce/" title="首页">个人简介</a></h3>
101101

102102
<article class="post">
103103
<header class="post-header">
104-
<h1 class ="post-title">Text</h1>
104+
<h1 class ="post-title">Linux文本处理命令总结</h1>
105105
<div class="post-meta">
106106
<div>
107107
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-calendar">
@@ -225,7 +225,7 @@ <h4 id="1-用途简介-1">1、用途简介</h4>
225225
<h4 id="2-命令格式-1">2、命令格式</h4>
226226

227227
<blockquote>
228-
<p>sed [-hnV] [-e<script>] [-f] [文本文件]</p>
228+
<p>sed [-hnV] [ - e <script> ] [-f] [文本文件]</p>
229229
</blockquote>
230230

231231
<h4 id="3-常用参数-1">3、常用参数</h4>

tags/linux/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h1>Linux</h1>
6262
<ul class="posts-list">
6363

6464
<li class="posts-list-item">
65-
<a class="posts-list-item-title" href="https://sin-coder.github.io/linux/text/">Text</a>
65+
<a class="posts-list-item-title" href="https://sin-coder.github.io/linux/text/">Linux文本处理命令总结</a>
6666
<span class="posts-list-item-description">
6767
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-clock">
6868
<title>clock</title>

tags/linux/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
<item>
15-
<title>Text</title>
15+
<title>Linux文本处理命令总结</title>
1616
<link>https://sin-coder.github.io/linux/text/</link>
1717
<pubDate>Fri, 24 Apr 2020 19:55:33 +0800</pubDate>
1818

0 commit comments

Comments
 (0)