#!/usr/bin/env python
from __future__ import print_function
from subprocess import Popen
import os
import sys
try:
    text=sys.argv[1]
except:
    print "please supply a search string"

file_path = os.path.dirname(os.path.realpath(__file__))

process=Popen(file_path+"/../git-search/git_search.sh %s" % ( str(text),), shell=True)
