diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-27 02:21:35 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-27 02:21:35 +0900 |
| commit | b17eff09fe2aa5f1cd02ee8fafdef52fc7074755 (patch) | |
| tree | f3c1a84dcc7d602c9bfe4f95480457434c487001 | |
| parent | 13b159c6dd499b5c67a110e02780d9e741f0ecdb (diff) | |
| download | nsfisis.dev-b17eff09fe2aa5f1cd02ee8fafdef52fc7074755.tar.gz nsfisis.dev-b17eff09fe2aa5f1cd02ee8fafdef52fc7074755.tar.zst nsfisis.dev-b17eff09fe2aa5f1cd02ee8fafdef52fc7074755.zip | |
feat(blog/content): new post /posts/2025-03-27/zip-function-like-command-paste-command/
| -rw-r--r-- | vhosts/blog/content/posts/2025-03-27/zip-function-like-command-paste-command.ndoc | 111 | ||||
| -rw-r--r-- | vhosts/blog/public/atom.xml | 10 | ||||
| -rw-r--r-- | vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html | 156 | ||||
| -rw-r--r-- | vhosts/blog/public/posts/atom.xml | 10 | ||||
| -rw-r--r-- | vhosts/blog/public/posts/index.html | 15 | ||||
| -rw-r--r-- | vhosts/blog/public/tags/index.html | 2 | ||||
| -rw-r--r-- | vhosts/blog/public/tags/note-to-self/atom.xml | 10 | ||||
| -rw-r--r-- | vhosts/blog/public/tags/note-to-self/index.html | 15 |
8 files changed, 325 insertions, 4 deletions
diff --git a/vhosts/blog/content/posts/2025-03-27/zip-function-like-command-paste-command.ndoc b/vhosts/blog/content/posts/2025-03-27/zip-function-like-command-paste-command.ndoc new file mode 100644 index 00000000..3419099b --- /dev/null +++ b/vhosts/blog/content/posts/2025-03-27/zip-function-like-command-paste-command.ndoc @@ -0,0 +1,111 @@ +--- +[article] +uuid = "99111377-27e7-427b-9dc5-a23f621fa826" +title = "zip 関数のようなコマンド paste" +description = "zip 関数のような動きをする paste コマンドについてのメモ。" +tags = [ + "note-to-self", +] + +[[article.revisions]] +date = "2021-03-22" +remark = "デジタルサーカス株式会社の社内記事として公開" +isInternal = true + +[[article.revisions]] +date = "2025-03-27" +remark = "ブログ記事として一般公開" +--- +<article> + <note> + この記事は、2021-03-22 に<a href="https://www.dgcircus.com/">デジタルサーカス株式会社</a> の社内 Qiita Team に公開された記事をベースに、加筆修正して一般公開したものです。 + </note> + <section id="intro"> + <h>実現したい内容</h> + <p> + 次の2ファイル <code>a.txt</code> / <code>b.txt</code> から出力 <code>ab.txt</code> を得たい。 + </p> + <p> + <code>a.txt</code> + </p> + <codeblock> + <![CDATA[ + a1 + a2 + a3 + ]]> + </codeblock> + <p> + <code>b.txt</code> + </p> + <codeblock> + <![CDATA[ + b1 + b2 + b3 + ]]> + </codeblock> + <p> + <code>ab.txt</code> + </p> + <codeblock> + <![CDATA[ + a1 + b1 + a2 + b2 + a3 + b3 + ]]> + </codeblock> + <p> + ちょうど Python や Haskell などにある <code>zip</code> 関数のような動きをさせたい。 + </p> + </section> + <section id="paste-command"> + <h>実現方法</h> + <p> + 記事タイトルに書いたように、<code>paste</code> コマンドを使うと実現できる。 + </p> + <codeblock> + <![CDATA[ + $ paste -d '\ + ' a.txt b.txt > ab.txt + ]]> + </codeblock> + <p> + <code>paste</code> コマンドは複数のファイルを引数に取り、それらを1行ずつ消費しながら <code>-d</code> で指定した文字で区切って出力する。 + <code>-d</code> は区切り文字の指定で、デフォルトだとタブ区切りになる。 + </p> + <p> + ファイル名には <code>-</code> を指定でき、その場合は標準入力から読み込んで出力する。 + このとき <code>paste - -</code> のように複数回 <code>-</code> を指定すると、指定した回数の行ごとに連結することができる。 + 例えば <code>ab.txt</code> だとこうなる。 + </p> + <codeblock> + <![CDATA[ + $ paste - - < ab.txt + a1 b1 + a2 b2 + a3 b3 + ]]> + </codeblock> + <p> + これは標準入力を使うとき特有の挙動で、単に同じファイル名を指定してもこうはならない。 + </p> + <codeblock> + <![CDATA[ + $ paste ab.txt ab.txt + a1 a1 + b1 b1 + a2 a2 + b2 b2 + a3 a3 + b3 b3 + ]]> + </codeblock> + <p> + ときどき便利。 + </p> + </section> +</article> diff --git a/vhosts/blog/public/atom.xml b/vhosts/blog/public/atom.xml index 5d7b69f6..c9ea4064 100644 --- a/vhosts/blog/public/atom.xml +++ b/vhosts/blog/public/atom.xml @@ -7,7 +7,15 @@ <author> <name>nsfisis</name> </author> - <updated>2025-02-24T00:00:00+09:00</updated> + <updated>2025-03-27T00:00:00+09:00</updated> + <entry> + <id>urn:uuid:99111377-27e7-427b-9dc5-a23f621fa826</id> + <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-03-27/zip-function-like-command-paste-command/"></link> + <title>zip 関数のようなコマンド paste</title> + <summary>zip 関数のような動きをする paste コマンドについてのメモ。</summary> + <published>2025-03-27T00:00:00+09:00</published> + <updated>2025-03-27T00:00:00+09:00</updated> + </entry> <entry> <id>urn:uuid:13174dc7-c1a3-465f-9ba6-14f0bc6f5961</id> <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-02-24/phpcon-nagoya-2025-report/"></link> diff --git a/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html b/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html new file mode 100644 index 00000000..33d871d5 --- /dev/null +++ b/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html @@ -0,0 +1,156 @@ +<!DOCTYPE html> +<html lang="ja-JP"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="nsfisis"> + <meta name="copyright" content="© 2025 nsfisis"> + <meta name="description" content="zip 関数のような動きをする paste コマンドについてのメモ。"> + <meta name="keywords" content="備忘録"> + <meta property="og:type" content="article"> + <meta property="og:title" content="zip 関数のようなコマンド paste|REPL: Rest-Eat-Program Loop"> + <meta property="og:description" content="zip 関数のような動きをする paste コマンドについてのメモ。"> + <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:locale" content="ja_JP"> + <link rel="icon" type="image/svg+xml" href="/favicon.svg"> + <title>zip 関数のようなコマンド paste|REPL: Rest-Eat-Program Loop</title> + <link rel="stylesheet" href="/style.css?h=79020a898c7052f79b32e90376a4497d"> + <link rel="stylesheet" href="/hl.css?h=340e65ffd5c17713efc9107c06304f7b"> + </head> + <body class="single"> + <header class="header"> + <div class="site-logo"> + <a href="/">REPL: Rest-Eat-Program Loop</a> + </div> + <nav class="nav"> + <ul> + <li> + <a href="/about/">About</a> + </li> + <li> + <a href="/posts/">Posts</a> + </li> + <li> + <a href="/slides/">Slides</a> + </li> + <li> + <a href="/tags/">Tags</a> + </li> + </ul> + </nav> + </header> + <main class="main"> + <article class="post-single"> + <header class="post-header"> + <h1 class="post-title">zip 関数のようなコマンド paste</h1> + <ul class="post-tags"> + <li class="tag"> + <a href="/tags/note-to-self/">備忘録</a> + </li> + </ul> + </header> + <div class="post-content"> + <section> + <h2 id="changelog">更新履歴</h2> + <ol> + <li class="revision"> + <time datetime="2021-03-22">2021-03-22</time>: デジタルサーカス株式会社の社内記事として公開 + </li> + <li class="revision"> + <time datetime="2025-03-27">2025-03-27</time>: ブログ記事として一般公開 + </li> + </ol> + </section> + <div class="admonition"> + <div class="admonition-label"> + NOTE + </div> + <div class="admonition-content"> + この記事は、2021-03-22 に<a href="https://www.dgcircus.com/" rel="noreferrer" target="_blank">デジタルサーカス株式会社</a> の社内 Qiita Team に公開された記事をベースに、加筆修正して一般公開したものです。 + </div> + </div> + + <section id="section--intro"> + <h2><a href="#section--intro">実現したい内容</a></h2> + <p> + 次の2ファイル <code>a.txt</code> / <code>b.txt</code> から出力 <code>ab.txt</code> を得たい。 + </p> + + <p> + <code>a.txt</code> + </p> + + <pre class="highlight"><code>a1 +a2 +a3</code></pre> + + <p> + <code>b.txt</code> + </p> + + <pre class="highlight"><code>b1 +b2 +b3</code></pre> + + <p> + <code>ab.txt</code> + </p> + + <pre class="highlight"><code>a1 +b1 +a2 +b2 +a3 +b3</code></pre> + + <p> + ちょうど Python や Haskell などにある <code>zip</code> 関数のような動きをさせたい。 + </p> + </section> + + <section id="section--paste-command"> + <h2><a href="#section--paste-command">実現方法</a></h2> + <p> + 記事タイトルに書いたように、<code>paste</code> コマンドを使うと実現できる。 + </p> + + <pre class="highlight"><code>$ paste -d '\ +' a.txt b.txt > ab.txt</code></pre> + + <p> + <code>paste</code> コマンドは複数のファイルを引数に取り、それらを1行ずつ消費しながら <code>-d</code> で指定した文字で区切って出力する。<code>-d</code> は区切り文字の指定で、デフォルトだとタブ区切りになる。 + </p> + + <p> + ファイル名には <code>-</code> を指定でき、その場合は標準入力から読み込んで出力する。このとき <code>paste - -</code> のように複数回 <code>-</code> を指定すると、指定した回数の行ごとに連結することができる。例えば <code>ab.txt</code> だとこうなる。 + </p> + + <pre class="highlight"><code>$ paste - - < ab.txt +a1 b1 +a2 b2 +a3 b3</code></pre> + + <p> + これは標準入力を使うとき特有の挙動で、単に同じファイル名を指定してもこうはならない。 + </p> + + <pre class="highlight"><code>$ paste ab.txt ab.txt +a1 a1 +b1 b1 +a2 a2 +b2 b2 +a3 a3 +b3 b3</code></pre> + + <p> + ときどき便利。 + </p> + </section> + </div> + </article> + </main> + <footer class="footer"> + © 2021 nsfisis + </footer> + </body> +</html> diff --git a/vhosts/blog/public/posts/atom.xml b/vhosts/blog/public/posts/atom.xml index 8d5ced05..209f0a66 100644 --- a/vhosts/blog/public/posts/atom.xml +++ b/vhosts/blog/public/posts/atom.xml @@ -7,7 +7,15 @@ <author> <name>nsfisis</name> </author> - <updated>2025-02-24T00:00:00+09:00</updated> + <updated>2025-03-27T00:00:00+09:00</updated> + <entry> + <id>urn:uuid:99111377-27e7-427b-9dc5-a23f621fa826</id> + <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-03-27/zip-function-like-command-paste-command/"></link> + <title>zip 関数のようなコマンド paste</title> + <summary>zip 関数のような動きをする paste コマンドについてのメモ。</summary> + <published>2025-03-27T00:00:00+09:00</published> + <updated>2025-03-27T00:00:00+09:00</updated> + </entry> <entry> <id>urn:uuid:13174dc7-c1a3-465f-9ba6-14f0bc6f5961</id> <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-02-24/phpcon-nagoya-2025-report/"></link> diff --git a/vhosts/blog/public/posts/index.html b/vhosts/blog/public/posts/index.html index c3275b5b..0c178934 100644 --- a/vhosts/blog/public/posts/index.html +++ b/vhosts/blog/public/posts/index.html @@ -43,6 +43,21 @@ <h1>投稿一覧</h1> </header> <article class="post-entry"> + <a href="/posts/2025-03-27/zip-function-like-command-paste-command/"> + <header class="entry-header"> + <h2>zip 関数のようなコマンド paste</h2> + </header> + <section class="entry-content"> + <p> + zip 関数のような動きをする paste コマンドについてのメモ。 + </p> + </section> + <footer class="entry-footer"> + <time datetime="2025-03-27">2025-03-27</time> 投稿 + </footer> + </a> + </article> + <article class="post-entry"> <a href="/posts/2025-02-24/phpcon-nagoya-2025-report/"> <header class="entry-header"> <h2>PHP カンファレンス名古屋 2025 参加レポ</h2> diff --git a/vhosts/blog/public/tags/index.html b/vhosts/blog/public/tags/index.html index 9ac8471e..8ec49766 100644 --- a/vhosts/blog/public/tags/index.html +++ b/vhosts/blog/public/tags/index.html @@ -157,7 +157,7 @@ <h2>備忘録</h2> </header> <footer class="entry-footer"> - 2件の記事 + 3件の記事 </footer> </a> </article> diff --git a/vhosts/blog/public/tags/note-to-self/atom.xml b/vhosts/blog/public/tags/note-to-self/atom.xml index 73cd26a0..7c1fe6d4 100644 --- a/vhosts/blog/public/tags/note-to-self/atom.xml +++ b/vhosts/blog/public/tags/note-to-self/atom.xml @@ -7,7 +7,15 @@ <author> <name>nsfisis</name> </author> - <updated>2024-02-17T00:00:00+09:00</updated> + <updated>2025-03-27T00:00:00+09:00</updated> + <entry> + <id>urn:uuid:99111377-27e7-427b-9dc5-a23f621fa826</id> + <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-03-27/zip-function-like-command-paste-command/"></link> + <title>zip 関数のようなコマンド paste</title> + <summary>zip 関数のような動きをする paste コマンドについてのメモ。</summary> + <published>2025-03-27T00:00:00+09:00</published> + <updated>2025-03-27T00:00:00+09:00</updated> + </entry> <entry> <id>urn:uuid:210673d0-c19e-4195-a280-968a0729dd41</id> <link rel="alternate" href="https://blog.nsfisis.dev/posts/2024-02-03/install-wireguard-on-personal-server/"></link> diff --git a/vhosts/blog/public/tags/note-to-self/index.html b/vhosts/blog/public/tags/note-to-self/index.html index 2e77c306..62455d19 100644 --- a/vhosts/blog/public/tags/note-to-self/index.html +++ b/vhosts/blog/public/tags/note-to-self/index.html @@ -44,6 +44,21 @@ <h1>タグ「備忘録」一覧</h1> </header> <article class="post-entry"> + <a href="/posts/2025-03-27/zip-function-like-command-paste-command/"> + <header class="entry-header"> + <h2>zip 関数のようなコマンド paste</h2> + </header> + <section class="entry-content"> + <p> + zip 関数のような動きをする paste コマンドについてのメモ。 + </p> + </section> + <footer class="entry-footer"> + <time datetime="2025-03-27">2025-03-27</time> 投稿 + </footer> + </a> + </article> + <article class="post-entry"> <a href="/posts/2024-02-03/install-wireguard-on-personal-server/"> <header class="entry-header"> <h2>【備忘録】 個人用サーバに WireGuard を導入する</h2> |
