需求说明:好多软件配置文件中会有许多以#开头的注释说明内容和空行,需求是在查看文件的时候不显示这些内容。
1:过滤掉以#开头的行。
命令格式:cat 文件路径 | grep ‘^#’ 举例:cat /usr/local/apache/conf/httpd.conf | grep \'^#\'
2.过滤掉空行。
命令格式:cat 文件路径 | grep ‘^$’ 举例:cat /usr/local/apache/conf/httpd.conf | grep \'^$\'
3.过滤掉以#开头和空行的行。
命令格式:cat 文件路径 | grep ‘^#’ | grep \'^$\' 举例:cat /usr/local/apache/conf/httpd.conf | grep \'^#\' | grep \'^$\'