25
14

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 5 years have passed since last update.

grepで行番号を表示しました。

Last updated at Posted at 2015-09-13

grepをしていると検索結果に行番号を表示したくなります。

nオプションを付ける

grepに行数を表示するにはnオプションを使用します。

行数を表示
grep -n "title" -R app/views/events/

app/views/events//_form.html.slim:15:      = f.label :title
app/views/events//_form.html.slim:16:      = f.text_field app/views/events//show.html.slim:4:  = @event.title

ファイル名の後ろに付いているのが行番号のようです。

参考

25
14
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
25
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?