Skip to content

Commit 89ed61f

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 57ed1e2 commit 89ed61f

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

reference/cstdlib/system.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<meta name="viewport" content="width=device-width,initial-scale=1">
2222
<meta name="keywords" content="
23-
C++,標準ライブラリ,リファレンス,ドキュメント,STL,std,cstdlib
23+
C++,標準ライブラリ,リファレンス,ドキュメント,STL,std,cstdlib,std,function
2424
">
2525
<meta name="title" content="system - cpprefjp C++日本語リファレンス" />
2626
<meta itemprop="name" content="system - cpprefjp C++日本語リファレンス" />
@@ -68,7 +68,7 @@
6868

6969
</head>
7070
<body>
71-
<header data-kunai-mdinfo="{&#34;meta&#34;: {&#34;header&#34;: [&#34;cstdlib&#34;]}, &#34;sources&#34;: [{&#34;id&#34;: &#34;5ceb0964e5c0e9bc548c28c8a418094a95bebeec&#34;, &#34;source&#34;: &#34;#include &lt;cstdlib&gt;\n#include &lt;fstream&gt;\n#include &lt;iostream&gt;\n\nint main()\n{\n std::system(\&#34;ls -l &gt;test.txt\&#34;);//\&#34;ls -l &gt;test.txt\&#34;\u3092\u5b9f\u884c\n std::cout &lt;&lt; std::ifstream(\&#34;test.txt\&#34;).rdbuf();\n}\n&#34;}], &#34;page_id&#34;: [&#34;reference&#34;, &#34;cstdlib&#34;, &#34;system&#34;]}">
71+
<header data-kunai-mdinfo="{&#34;meta&#34;: {&#34;header&#34;: [&#34;cstdlib&#34;], &#34;namespace&#34;: [&#34;std&#34;], &#34;id-type&#34;: [&#34;function&#34;]}, &#34;sources&#34;: [{&#34;id&#34;: &#34;5ceb0964e5c0e9bc548c28c8a418094a95bebeec&#34;, &#34;source&#34;: &#34;#include &lt;cstdlib&gt;\n#include &lt;fstream&gt;\n#include &lt;iostream&gt;\n\nint main()\n{\n std::system(\&#34;ls -l &gt;test.txt\&#34;);//\&#34;ls -l &gt;test.txt\&#34;\u3092\u5b9f\u884c\n std::cout &lt;&lt; std::ifstream(\&#34;test.txt\&#34;).rdbuf();\n}\n&#34;}], &#34;page_id&#34;: [&#34;reference&#34;, &#34;cstdlib&#34;, &#34;system&#34;]}">
7272
<nav class="navbar navbar-default" role="navigation">
7373
<div class="container-fluid">
7474
<div class="navbar-header">
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-05T05:13:46">
192-
2025年07月05日 05時13分46秒
191+
<span itemprop="datePublished" content="2025-07-05T05:23:29">
192+
2025年07月05日 05時23分29秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -212,7 +212,7 @@
212212
<div class="row">
213213
<div class="col-sm-12 content-body">
214214

215-
<div class="header">&lt;cstdlib&gt;</div><h1 itemprop="name"><span class="token">system</span></h1>
215+
<div class="identifier-type">function</div><div class="header">&lt;cstdlib&gt;</div><h1 itemprop="name"><span class="namespace" title="namespace std">std::</span><span class="token">system</span></h1>
216216
<div itemprop="articleBody"><p><div class="codehilite"><pre><span></span><code><span class="kt">int</span> <span class="nf">system</span><span class="p">(</span> <span class="k">const</span> <span class="kt">char</span><span class="o">*</span> <span class="n">command</span> <span class="p">);</span>
217217
</code></pre></div>
218218
</p>

rss.xml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,37 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-07-05T05:18:35.276929</updated>
6-
<id>72e70307-e1b2-41c7-90f7-1e0d828ce380</id>
5+
<updated>2025-07-05T05:27:28.917521</updated>
6+
<id>3abdd4e5-d942-414b-a236-7044cd54f4ea</id>
77

88

9+
<entry>
10+
<title>system -- `cstdlib/system`: fix class header</title>
11+
<link href="https://cpprefjp.github.io/reference/cstdlib/system.html"/>
12+
<id>2f9e3f4077512155ad56507696bc0813192c0d7e:reference/cstdlib/system.md</id>
13+
<updated>2025-07-05T14:23:29+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/system.md b/reference/cstdlib/system.md
16+
index 2a2560782..569fae6b6 100644
17+
--- a/reference/cstdlib/system.md
18+
+++ b/reference/cstdlib/system.md
19+
@@ -1,6 +1,7 @@
20+
# system
21+
* cstdlib[meta header]
22+
-
23+
+* std[meta namespace]
24+
+* function[meta id-type]
25+
26+
```cpp
27+
int system( const char* command );
28+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>K10-K10</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
936
<entry>
1037
<title>cstdlib -- added linl `cstdlib/system.md`</title>
1138
<link href="https://cpprefjp.github.io/reference/cstdlib.html"/>
@@ -902,31 +929,4 @@ index 000000000..f4d329eb6
902929
</author>
903930
</entry>
904931

905-
<entry>
906-
<title>fputc -- added nolink</title>
907-
<link href="https://cpprefjp.github.io/reference/cstdio/fputc.html"/>
908-
<id>1a6ace7c5545fde3687575591b29fb63f5d61e9e:reference/cstdio/fputc.md</id>
909-
<updated>2025-07-05T12:57:44+09:00</updated>
910-
911-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdio/fputc.md b/reference/cstdio/fputc.md
912-
index d775cfc7f..a8d678c1d 100644
913-
--- a/reference/cstdio/fputc.md
914-
+++ b/reference/cstdio/fputc.md
915-
@@ -15,7 +15,7 @@ int fputc( int ch, FILE* stream );
916-
## 戻り値
917-
出力された文字を返す。
918-
919-
-失敗した場合、[`EOF`](/reference/cstdio/eof.md)を返す。
920-
+失敗した場合、[`EOF`](/reference/cstdio/eof.md.nolink)を返す。
921-
922-
## 例
923-
```cpp example
924-
&lt;/code&gt;&lt;/pre&gt;</summary>
925-
926-
<author>
927-
<name>rotarymars</name>
928-
<email>[email protected]</email>
929-
</author>
930-
</entry>
931-
932932
</feed>

sitemap.xml

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

3130131301
<url>
3130231302
<loc>https://cpprefjp.github.io/reference/cstdlib/system.html</loc>
31303-
<lastmod>2025-07-05T14:13:46+09:00</lastmod>
31303+
<lastmod>2025-07-05T14:23:29+09:00</lastmod>
3130431304
<changefreq>daily</changefreq>
3130531305
<priority>0.7</priority>
3130631306
</url>

static/crsearch/crsearch.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/crsearch/crsearch.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)