Grep: Difference between revisions

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


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

Revision as of 15:55, 26 March 2014

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