===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
hub-2.7.0~ds1/README.md-13-
hub-2.7.0~ds1/README.md:14:hub is best aliased as `git`, so you can type `$ git <command>` in the shell and
hub-2.7.0~ds1/README.md-15-get all the usual `hub` features. See "Aliasing" below.
##############################################
hub-2.7.0~ds1/commands/alias.go-116-		default:
hub-2.7.0~ds1/commands/alias.go:117:			eval = `eval "$(hub alias -s)"`
hub-2.7.0~ds1/commands/alias.go-118-		}
##############################################
hub-2.7.0~ds1/features/support/completion.rb-117-    $tmux = %w[tmux -L hub-test]
hub-2.7.0~ds1/features/support/completion.rb:118:    system(*($tmux + %w[new-session -ds hub]))
hub-2.7.0~ds1/features/support/completion.rb-119-    at_exit do
hub-2.7.0~ds1/features/support/completion.rb:120:      system(*($tmux + %w[kill-server]))
hub-2.7.0~ds1/features/support/completion.rb-121-    end
##############################################
hub-2.7.0~ds1/features/support/completion.rb-143-    Dir.chdir(tmpdir) do
hub-2.7.0~ds1/features/support/completion.rb:144:      @tmux_pane = `#{$tmux.join(' ')} new-window -dP -n test 'env HOME="#{tmpdir}" #{shell}'`.chomp
hub-2.7.0~ds1/features/support/completion.rb-145-    end
##############################################
hub-2.7.0~ds1/features/support/completion.rb-152-  def tmux_pane_contents
hub-2.7.0~ds1/features/support/completion.rb:153:    system(*($tmux + ['capture-pane', '-t', tmux_pane]))
hub-2.7.0~ds1/features/support/completion.rb:154:    `#{$tmux.join(' ')} show-buffer`.rstrip
hub-2.7.0~ds1/features/support/completion.rb-155-  end
##############################################
hub-2.7.0~ds1/features/support/completion.rb-157-  def tmux_send_keys(*keys)
hub-2.7.0~ds1/features/support/completion.rb:158:    system(*($tmux + ['send-keys', '-t', tmux_pane, *keys]))
hub-2.7.0~ds1/features/support/completion.rb-159-  end
##############################################
hub-2.7.0~ds1/features/support/completion.rb-166-  def tmux_kill_pane
hub-2.7.0~ds1/features/support/completion.rb:167:    system(*($tmux + ['kill-pane', '-t', tmux_pane])) if tmux_pane?
hub-2.7.0~ds1/features/support/completion.rb-168-  end
##############################################
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-push.sample-43-		# Check for WIP commit
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-push.sample:44:		commit=`git rev-list -n 1 --grep '^WIP' "$range"`
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-push.sample-45-		if [ -n "$commit" ]
##############################################
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-45-# Is topic fully merged to master?
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample:46:not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-47-if test -z "$not_in_master"
##############################################
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-53-# Is topic ever merged to next?  If so you should not be rebasing it.
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample:54:only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample:55:only_next_2=`git rev-list ^master           ${publish} | sort`
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-56-if test "$only_next_1" = "$only_next_2"
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-57-then
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample:58:	not_in_topic=`git rev-list "^$topic" master`
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-59-	if test -z "$not_in_topic"
##############################################
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-66-else
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample:67:	not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
hub-2.7.0~ds1/fixtures/test.git/hooks/pre-rebase.sample-68-	/usr/bin/perl -e '
##############################################
hub-2.7.0~ds1/git/git_test.go-38-
hub-2.7.0~ds1/git/git_test.go:39:	SetGlobalConfig("core.editor", `$FOO "${BAR}"`)
hub-2.7.0~ds1/git/git_test.go-40-	gitEditor, err := Editor()
##############################################
hub-2.7.0~ds1/script/changelog-9-
hub-2.7.0~ds1/script/changelog:10:for sha in `git rev-list -n 100 --first-parent "$head"^`; do
hub-2.7.0~ds1/script/changelog-11-  previous_tag="$(git tag -l --points-at "$sha" 'v*' 2>/dev/null || true)"
##############################################
hub-2.7.0~ds1/share/man/man1/hub.1.ronn-164-    The file path where hub configuration is read from and stored. If
hub-2.7.0~ds1/share/man/man1/hub.1.ronn:165:    `XDG_CONFIG_HOME` is present, the default is `$XDG_CONFIG_HOME/hub`;
hub-2.7.0~ds1/share/man/man1/hub.1.ronn:166:    otherwise it's `$HOME/.config/hub`. The configuration file is also
hub-2.7.0~ds1/share/man/man1/hub.1.ronn-167-    searched for in `XDG_CONFIG_DIRS` per XDG Base Directory Specification.