Answers for "grep wildcard"

0

grep wildcard

# EXAMPLE: Displays all files containing a row that has "dSales[some-text]500"
grep "dSales.*500" *

# SYNTAX
# grep "<your-partA>.*<your-partB>" *

# The ".*" is considered the wildcard (and can match more 
# than one character and/or no characters at all)
Posted by: Guest on June-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language