Grep: Difference between revisions

From Federal Burro of Information
Jump to navigationJump to search
No edit summary
No edit summary
Line 7: Line 7:


<pre>cat /srv/gitblit-1.4.1/data/gitblit.properties | egrep -v '^\s?#' | grep -v "^[[:space:]]*$"</pre>
<pre>cat /srv/gitblit-1.4.1/data/gitblit.properties | egrep -v '^\s?#' | grep -v "^[[:space:]]*$"</pre>
drop in replacement for grep: sift, lone binary https://sift-tool.org/download

Revision as of 14:05, 1 July 2018

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