Skip to main content
added 2 characters in body
Source Link
squarefrog
  • 4.9k
  • 4
  • 39
  • 67

You can just runpipe the printevprintenv command through grep.

printenv | grep -i "we" 

The -i flag tells grep to search case-insensitively.

You can just run the printev command through grep.

printenv | grep -i "we" 

The -i flag tells grep to search case-insensitively.

You can just pipe the printenv command through grep.

printenv | grep -i "we" 

The -i flag tells grep to search case-insensitively.

Source Link
squarefrog
  • 4.9k
  • 4
  • 39
  • 67

You can just run the printev command through grep.

printenv | grep -i "we" 

The -i flag tells grep to search case-insensitively.