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.

【Command】diffコマンドのエイリアス

Last updated at Posted at 2020-02-19

自分が使っているコマンドのエイリアスを紹介するシリーズです。
今回は、diffコマンドを紹介します。

エイリアス

alias diff='colordiff -u'

詳細

  • colordiff:before,afterに色がつく。
  • オプション-u:差分表記<>-+に変更。

追加前
スクリーンショット 2020-02-20 0.34.32.png

追加後
スクリーンショット 2020-02-20 0.34.22.png

コードが悪かったですね、、見辛い、、、(いずれ変更)
こちらのItemにgolangのdiffを載せているので良かったら見てください。
https://qiita.com/konekato/items/834f4f0e011670dec44d

ソースコード

使用した(見にくい)コードはこちらです。

b(before)
t
te
tes
test
tes
te
t
a(after)
t
t
tes

ts
te
t

余談

マークダウン コード挿入の際 ```diff ってやるとちゃんと色が出る。

ターミナル
% diff b a

 t
-te
-tes
-test
+t
 tes
+
+ts
 te
 t
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?