Toggle navigation
Log in
Sign Up
Log in
Sign Up
Appium
C
C#
C++
Docker
Go
Informatica
Java
JavaScript
Kafka
Numpy
Oracle
Pandas
PHP
Python
R
React Native
Scipy
SFTP
Tableau
Teradata
TGMC
UNIX
Forget_Code.Models.CategoryViewModel
Add a new snippet
AWK
1
Choose Category
grep -i in UNIX
Forget Code
UNIX
grep -i
You can force grep to ignore word case with -i option.
In our file 1.txt , we have the content "I am from forget code"
grep in general purpose:
grep 'CODE' /var/root/*
Output:
No output
grep in ignore case:
grep -i 'CODE' /var/root/*
Output:
/var/root/1.txt:I am coming from forget code
Tags for grep -i in UNIX
grep with ignore case
grep ignore case flag
grep -v unix
grep ignore comments
Contribute to Forget Code, help others.
Add snippet