1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

diffコマンドでファイルを使わず文字列を比較する方法

Posted at

diffコマンドは引数にファイルを指定する必要があります。よって、diffしたいときは、diffしたい文字列をファイルに出力しなければなりません。しかし、場合によっては、ファイルに書き出すまでもないような処理や、なるべくファイルに書き出したくない場合もあると思います。そんなときは、プロセス展開(<()と記述)を使って次のように記載します。

#!/bin/bash

str1=aaa
str2=bbb

diff <(echo ${str1}) <(echo ${str2})

このプロセス展開、知っておくといろいろ便利です。ただし、ちょっとした注意事項があり、自分はこれに引っかかってsyntax errorになってしばらく詰まってしまいました。詳細はこちらの記事に書いておきますので、よろしければご覧ください。

Bashのスクリプトをshで実行するとsh互換のBashとして動作した

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?