May
03
2017
IP
By abernal
Tool to manage network related configurations
addr
Displays network interfaces information
Tool to manage network related configurations
addr
Displays network interfaces information
Utility used to manage string search in files
-v
Reverse match
# Get all lines in file.txt that do not start with # $ grep -v '^#' /var/file.txt
-e
Concatenate criteria
# Get all line in file.txt that do not start with # or $ $ grep -v -e '^#' -e '^$' /var/file.txt