-1

I tried to get the brightness level of android device using dumpsys. "dumpsys power | grep -i mScreenBrightness=" which returns the required output .

What does "-i" resembles here where as "dumpsys power | grep mScreenBrightness=" .. also returns same value.

Sanyal
  • 864
  • 10
  • 22
  • Was that really more convenient than typing `man grep` and searching for `-i`? – Benjamin W. May 30 '16 at 22:16
  • Possible duplicate of [UNIX man command to find list of man sections](https://stackoverflow.com/questions/25879960/unix-man-command-to-find-list-of-man-sections) – Sanyal Sep 04 '18 at 05:09

1 Answers1

1

grep -i stands for case insensitive

Lino
  • 5,084
  • 3
  • 21
  • 39