Grep

From Federal Burro of Information
Revision as of 18:36, 31 July 2019 by David (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

get rid of comments, even lines that start with space and then have comments:

more /etc/apache2/vhosts.d/default_vhost.include | egrep -v '^\s?#'

remove comments , and blanks lines:

cat /srv/gitblit-1.4.1/data/gitblit.properties | egrep -v '^\s?#' | grep -v "^[[:space:]]*$"

drop in replacement for grep: sift, lone binary https://sift-tool.org/download

grep comment

egrep -v '^\s?#'

or possibly:

egrep -v '^\s+#'