1. 程式人生 > >檢視檔案時去除註釋說明內容(原創貼-轉載請註明出處)

檢視檔案時去除註釋說明內容(原創貼-轉載請註明出處)

需求說明:好多軟體配置檔案中會有許多以#開頭的註釋說明內容和空行,需求是在檢視檔案的時候不顯示這些內容。

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 '^$'