Skip to content

Commit ea2faae

Browse files
committed
Compiler generation page Mon Nov 28 2016 00:14:04 GMT+0800 (CST)
1 parent 4341dfb commit ea2faae

File tree

5 files changed

+255
-176
lines changed

5 files changed

+255
-176
lines changed

c/fs/cat.html renamed to c/cat.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="description" content="cat:显示文件的内容。 - 最专业的Linux命令大全,内容包含Linux命令手册、详解、学习,值得收藏的Linux命令速查手册。">
88
<meta name="keywords" content="Linux,Command,命令大全,Linux命令手册">
99
<title>cat - Linux Command</title>
10-
<link rel="stylesheet" type="text/css" href="../../css/index.css">
10+
<link rel="stylesheet" type="text/css" href="../css/index.css">
1111
</head>
1212
<body>
1313
<a href="https://github.com/jaywcjlove/linux-command" target="_blank" class="github-corner"> <svg viewBox="0 0 250 250"><!-- kenny wang <wowohoo@qq.com> https://github.com/jaywcjlove --> <title>logo</title> <desc>Linux Command Logo. https://github.com/jaywcjlove</desc><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg> </a>
@@ -23,7 +23,7 @@
2323
</ul>
2424
<input type="text" class="query" id="query" autocomplete="off" placeholder="Linux 命令搜索"/>
2525
<div class="enter-input">
26-
<input type="hidden" id="current_path" value="/c/fs/cat.html">
26+
<input type="hidden" id="current_path" value="/c/cat.html">
2727
<button id="search_btn">搜索</button>
2828
</div>
2929
</div>
@@ -35,7 +35,7 @@
3535

3636
<div class="markdown-body">
3737

38-
<a class="edit_btn" href="https://github.com/jaywcjlove/linux-command/edit/master//command/fs/cat.md">编辑</a>
38+
<a class="edit_btn" href="https://github.com/jaywcjlove/linux-command/edit/master//command/cat.md">编辑</a>
3939

4040
<h1 id="cat">cat</h1><p>显示文件的内容。</p>
4141
<h2 id="补充说明">补充说明</h2><p>cat命令连接文件并打印到标准输出设备上,cat经常用来显示文件的内容,类似于下的type命令。</p>
@@ -46,7 +46,7 @@ <h2 id="语法">语法</h2><pre><code><span class="hljs-function"><span class="h
4646
<li>-s或--squeeze-blank:当遇到有连续两行以上的空白行,就代换为一行的空白行; </li>
4747
<li>-A:显示不可打印字符,行尾显示“$”; </li>
4848
<li>-e:等价于&quot;-vE&quot;选项; </li>
49-
<li>-t:<code>等价</code>&quot;-vT&quot;选项;</li>
49+
<li>-t:等价于&quot;-vT&quot;选项;</li>
5050
</ul>
5151
<h2 id="例子">例子</h2><pre><code class="lang-bash">cat m1 <span class="hljs-comment"># (在屏幕上显示文件ml的内容) </span>
5252
cat m1 m2 <span class="hljs-comment"># (同时显示文件ml和m2的内容) </span>
@@ -55,7 +55,7 @@ <h2 id="例子">例子</h2><pre><code class="lang-bash">cat m1 <span class=
5555

5656
</div>
5757

58-
<script type="text/javascript" src="../../js/dt.js"></script>
59-
<script type="text/javascript" src="../../js/index.js"></script>
58+
<script type="text/javascript" src="../js/dt.js"></script>
59+
<script type="text/javascript" src="../js/index.js"></script>
6060
</body>
6161
</html>

0 commit comments

Comments
 (0)