===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
4store-1.1.6+20151109/app-aux/MacOS/4store-2-
4store-1.1.6+20151109/app-aux/MacOS/4store:3:export fsroot=`dirname $0`
4store-1.1.6+20151109/app-aux/MacOS/4store-4-
##############################################
4store-1.1.6+20151109/app-aux/build-app.sh-5-bv=`cat app-aux/bundle-version`
4store-1.1.6+20151109/app-aux/build-app.sh:6:bv=`expr $bv + 1`
4store-1.1.6+20151109/app-aux/build-app.sh-7-echo $bv > app-aux/bundle-version
##############################################
4store-1.1.6+20151109/app-aux/build-dmg.sh-11-
4store-1.1.6+20151109/app-aux/build-dmg.sh:12:$output = `hdiutil create "4store-$version" -ov -megabytes $size -fs HFS+ -volname \"4store-$version\"`;
4store-1.1.6+20151109/app-aux/build-dmg.sh-13-die "Couldn't create 4store.dmg\nIs it mounted?" if $?;
##############################################
4store-1.1.6+20151109/app-aux/build-dmg.sh-16-print("INFO: dmgName is $dmgName\n");
4store-1.1.6+20151109/app-aux/build-dmg.sh:17:$output = `hdiutil attach \"$dmgName\"`;
4store-1.1.6+20151109/app-aux/build-dmg.sh-18-die "FATAL: Couldn't mount DMG $dmgName (Error: $?)\n" if $?;
##############################################
4store-1.1.6+20151109/app-aux/build-dmg.sh-21-
4store-1.1.6+20151109/app-aux/build-dmg.sh:22:$output = `cp -r 4store.app "$dest"`;
4store-1.1.6+20151109/app-aux/build-dmg.sh-23-$readme = `cat app-aux/README.rtf`;
##############################################
4store-1.1.6+20151109/app-aux/build-dmg.sh-27-close(README);
4store-1.1.6+20151109/app-aux/build-dmg.sh:28:system("ln -s /Applications \"$dest/Applications\"");
4store-1.1.6+20151109/app-aux/build-dmg.sh-29-
4store-1.1.6+20151109/app-aux/build-dmg.sh:30:$output = `hdiutil detach "$dest"`;
4store-1.1.6+20151109/app-aux/build-dmg.sh-31-die "FATAL: Error while copying files (Error: $err)\n" if $err;
##############################################
4store-1.1.6+20151109/app-aux/build-dmg.sh-35-rename($dmgName, $tmpName);
4store-1.1.6+20151109/app-aux/build-dmg.sh:36:$output = `hdiutil convert "$tmpName" -format UDZO -imagekey zlib-level=8 -o "$dmgName"`;
4store-1.1.6+20151109/app-aux/build-dmg.sh-37-die "Error: Couldn't compress the dmg $dmgName: $?\n" if $?;
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-132-foreach my $cmd (@TOOLS_REQUIRED) {
4store-1.1.6+20151109/app-aux/build-static.pl:133:  system("which $cmd > /dev/null") && die "Error: $cmd is not available on this system.";
4store-1.1.6+20151109/app-aux/build-static.pl-134-}
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-253-        print "Downloading: ".$pkg->{'tarname'}."\n";
4store-1.1.6+20151109/app-aux/build-static.pl:254:        safe_system('curl', '-L', '-k', '-o', $pkg->{'tarpath'}, $pkg->{'url'});
4store-1.1.6+20151109/app-aux/build-static.pl-255-    }
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-262-    if ($pkg->{'md5'}) {
4store-1.1.6+20151109/app-aux/build-static.pl:263:        if (`md5 $pkg->{'tarpath'}` =~ / = ([0-9a-f]{32})$/) {
4store-1.1.6+20151109/app-aux/build-static.pl-264-            if ($pkg->{'md5'} ne $1) {
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-281-        print "Deleting old: $pkg->{'dirpath'}\n";
4store-1.1.6+20151109/app-aux/build-static.pl:282:        safe_system('rm', '-Rf', $pkg->{'dirpath'});
4store-1.1.6+20151109/app-aux/build-static.pl-283-    }
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-287-    if ($pkg->{'tarname'} =~ /bz2$/) {
4store-1.1.6+20151109/app-aux/build-static.pl:288:        safe_system('tar', '-jxf', $pkg->{'tarpath'});
4store-1.1.6+20151109/app-aux/build-static.pl-289-    } elsif ($pkg->{'tarname'} =~ /gz$/) {
4store-1.1.6+20151109/app-aux/build-static.pl:290:        safe_system('tar', '-zxf', $pkg->{'tarpath'});
4store-1.1.6+20151109/app-aux/build-static.pl-291-    } else {
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-301-    if ($pkg->{'clean'}) {
4store-1.1.6+20151109/app-aux/build-static.pl:302:        system($pkg->{'clean'});
4store-1.1.6+20151109/app-aux/build-static.pl-303-    } else {
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-313-        my $patchfile = $TOP_DIR.'/app-aux/'.$pkg->{'patch'};
4store-1.1.6+20151109/app-aux/build-static.pl:314:        safe_system("patch -p0 < $patchfile");
4store-1.1.6+20151109/app-aux/build-static.pl-315-    }
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-323-    if ($pkg->{'config'}) {
4store-1.1.6+20151109/app-aux/build-static.pl:324:        safe_system($pkg->{'config'});
4store-1.1.6+20151109/app-aux/build-static.pl-325-    } else {
4store-1.1.6+20151109/app-aux/build-static.pl-326-        if (-e "./configure") {
4store-1.1.6+20151109/app-aux/build-static.pl:327:          safe_system("./configure $DEFAULT_CONFIGURE_ARGS");
4store-1.1.6+20151109/app-aux/build-static.pl-328-        } elsif (-e "./autogen.sh") {
4store-1.1.6+20151109/app-aux/build-static.pl:329:          safe_system("./autogen.sh $DEFAULT_CONFIGURE_ARGS");
4store-1.1.6+20151109/app-aux/build-static.pl-330-        } else {
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-341-    if ($pkg->{'make'}) {
4store-1.1.6+20151109/app-aux/build-static.pl:342:        safe_system($pkg->{'make'});
4store-1.1.6+20151109/app-aux/build-static.pl-343-    } else {
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-353-        print "Testing: ".$pkg->{'name'}."\n";
4store-1.1.6+20151109/app-aux/build-static.pl:354:        safe_system($pkg->{'test'});
4store-1.1.6+20151109/app-aux/build-static.pl-355-    }
##############################################
4store-1.1.6+20151109/app-aux/build-static.pl-363-    if ($pkg->{'install'}) {
4store-1.1.6+20151109/app-aux/build-static.pl:364:        safe_system($pkg->{'install'});
4store-1.1.6+20151109/app-aux/build-static.pl-365-    } else {
##############################################
4store-1.1.6+20151109/autogen.sh-98-    # extract copyright from header
4store-1.1.6+20151109/autogen.sh:99:    __copyright="`grep Copyright $AUTOGEN_SH | head -${HEAD_N}1 | awk '{print $4}'`"
4store-1.1.6+20151109/autogen.sh-100-    if [ "x$__copyright" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-105-    __id="$Id: autogen.sh 33925 2009-03-01 23:27:06Z brlcad $"
4store-1.1.6+20151109/autogen.sh:106:    __version="`echo $__id | sed 's/.*\([0-9][0-9][0-9][0-9]\)[-\/]\([0-9][0-9]\)[-\/]\([0-9][0-9]\).*/\1\2\3/'`"
4store-1.1.6+20151109/autogen.sh-107-    if [ "x$__version" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-184-    # needed to handle versions like 1.10 and 1.4-p6
4store-1.1.6+20151109/autogen.sh:185:    _min="`echo ${_min}. | sed 's/[^0-9]/./g' | sed 's/\.\././g'`"
4store-1.1.6+20151109/autogen.sh:186:    _cur="`echo ${_cur}. | sed 's/[^0-9]/./g' | sed 's/\.\././g'`"
4store-1.1.6+20151109/autogen.sh-187-
4store-1.1.6+20151109/autogen.sh:188:    _min_major="`echo $_min | cut -d. -f1`"
4store-1.1.6+20151109/autogen.sh:189:    _min_minor="`echo $_min | cut -d. -f2`"
4store-1.1.6+20151109/autogen.sh:190:    _min_patch="`echo $_min | cut -d. -f3`"
4store-1.1.6+20151109/autogen.sh-191-
4store-1.1.6+20151109/autogen.sh:192:    _cur_major="`echo $_cur | cut -d. -f1`"
4store-1.1.6+20151109/autogen.sh:193:    _cur_minor="`echo $_cur | cut -d. -f2`"
4store-1.1.6+20151109/autogen.sh:194:    _cur_patch="`echo $_cur | cut -d. -f3`"
4store-1.1.6+20151109/autogen.sh-195-
##############################################
4store-1.1.6+20151109/autogen.sh-258-ARGS="$*"
4store-1.1.6+20151109/autogen.sh:259:PATH_TO_AUTOGEN="`dirname $0`"
4store-1.1.6+20151109/autogen.sh:260:NAME_OF_AUTOGEN="`basename $0`"
4store-1.1.6+20151109/autogen.sh-261-AUTOGEN_SH="$PATH_TO_AUTOGEN/$NAME_OF_AUTOGEN"
##############################################
4store-1.1.6+20151109/autogen.sh-403-################################################
4store-1.1.6+20151109/autogen.sh:404:if [ "x`echo $ARGS | sed 's/.*[hH][eE][lL][pP].*/help/'`" = "xhelp" ] ; then
4store-1.1.6+20151109/autogen.sh-405-    HELP=yes
##############################################
4store-1.1.6+20151109/autogen.sh-494-if [ "x$PROJECT" = "x" ] ; then
4store-1.1.6+20151109/autogen.sh:495:    PROJECT="`grep AC_INIT $CONFIGURE | grep -v '.*#.*AC_INIT' | tail -${TAIL_N}1 | sed 's/^[ 	]*AC_INIT(\([^,)]*\).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-496-    if [ "x$PROJECT" = "xAC_INIT" ] ; then
4store-1.1.6+20151109/autogen.sh-497-	# projects might be using the older/deprecated arg-less AC_INIT .. look for AM_INIT_AUTOMAKE instead
4store-1.1.6+20151109/autogen.sh:498:	PROJECT="`grep AM_INIT_AUTOMAKE $CONFIGURE | grep -v '.*#.*AM_INIT_AUTOMAKE' | tail -${TAIL_N}1 | sed 's/^[ 	]*AM_INIT_AUTOMAKE(\([^,)]*\).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-499-    fi
##############################################
4store-1.1.6+20151109/autogen.sh-554-else
4store-1.1.6+20151109/autogen.sh:555:    _version="`$AUTOCONF --version | head -${HEAD_N}1 | sed 's/[^0-9]*\([0-9\.][0-9\.]*\)/\1/'`"
4store-1.1.6+20151109/autogen.sh-556-    if [ "x$_version" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-595-else
4store-1.1.6+20151109/autogen.sh:596:    _version="`$AUTOMAKE --version | head -${HEAD_N}1 | sed 's/[^0-9]*\([0-9\.][0-9\.]*\)/\1/'`"
4store-1.1.6+20151109/autogen.sh-597-    if [ "x$_version" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-636-	    $VERBOSE_ECHO "Checking libtoolize alternate: $tool --version"
4store-1.1.6+20151109/autogen.sh:637:	    _glibtoolize="`$tool --version > /dev/null 2>&1`"
4store-1.1.6+20151109/autogen.sh-638-	    if [ $? = 0 ] ; then
4store-1.1.6+20151109/autogen.sh-639-		$VERBOSE_ECHO "Found $tool --version"
4store-1.1.6+20151109/autogen.sh:640:		_glti="`which $tool`"
4store-1.1.6+20151109/autogen.sh-641-		if [ "x$_glti" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-648-		fi
4store-1.1.6+20151109/autogen.sh:649:		_gltidir="`dirname $_glti`"
4store-1.1.6+20151109/autogen.sh-650-		if [ "x$_gltidir" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-697-else
4store-1.1.6+20151109/autogen.sh:698:    _version="`$LIBTOOLIZE --version | head -${HEAD_N}1 | sed 's/[^0-9]*\([0-9\.][0-9\.]*\)/\1/'`"
4store-1.1.6+20151109/autogen.sh-699-    if [ "x$_version" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-814-    # $VERBOSE_ECHO "Looking for subdirs in `pwd`"
4store-1.1.6+20151109/autogen.sh:815:    _det_config_subdirs="`grep AC_CONFIG_SUBDIRS $_configure | grep -v '.*#.*AC_CONFIG_SUBDIRS' | sed 's/^[ 	]*AC_CONFIG_SUBDIRS(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-816-    CHECK_DIRS=""
##############################################
4store-1.1.6+20151109/autogen.sh-853-	    # compare entire content, restore if needed
4store-1.1.6+20151109/autogen.sh:854:	    if test "x`cat ${file}`" != "x`cat ${file}.$$.protect_from_automake.backup`" ; then
4store-1.1.6+20151109/autogen.sh-855-		if test "x$spacer" = "xno" ; then
##############################################
4store-1.1.6+20151109/autogen.sh-881-
4store-1.1.6+20151109/autogen.sh:882:    _aux_dir="`grep AC_CONFIG_AUX_DIR $CONFIGURE | grep -v '.*#.*AC_CONFIG_AUX_DIR' | tail -${TAIL_N}1 | sed 's/^[ 	]*AC_CONFIG_AUX_DIR(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-883-    if test ! -d "$_aux_dir" ; then
##############################################
4store-1.1.6+20151109/autogen.sh-913-    # look for subdirs
4store-1.1.6+20151109/autogen.sh:914:    _det_config_subdirs="`grep AC_CONFIG_SUBDIRS $_configure | grep -v '.*#.*AC_CONFIG_SUBDIRS' | sed 's/^[ 	]*AC_CONFIG_SUBDIRS(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-915-    CHECK_DIRS=""
##############################################
4store-1.1.6+20151109/autogen.sh-968-    #####################
4store-1.1.6+20151109/autogen.sh:969:    _aux_dir="`grep AC_CONFIG_AUX_DIR $CONFIGURE | grep -v '.*#.*AC_CONFIG_AUX_DIR' | tail -${TAIL_N}1 | sed 's/^[ 	]*AC_CONFIG_AUX_DIR(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-970-    if test ! -d "$_aux_dir" ; then
##############################################
4store-1.1.6+20151109/autogen.sh-979-    CONFIG_SUBDIRS=""
4store-1.1.6+20151109/autogen.sh:980:    _det_config_subdirs="`grep AC_CONFIG_SUBDIRS $CONFIGURE | grep -v '.*#.*AC_CONFIG_SUBDIRS' | sed 's/^[ 	]*AC_CONFIG_SUBDIRS(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`"
4store-1.1.6+20151109/autogen.sh-981-    for dir in $_det_config_subdirs ; do
##############################################
4store-1.1.6+20151109/autogen.sh-995-	_marker_found_message=${_marker_found_message_intro}${marker}${_marker_found_message_mid}
4store-1.1.6+20151109/autogen.sh:996:	_marker_found="`grep 'AM_INIT_AUTOMAKE.*'${marker} $CONFIGURE`"
4store-1.1.6+20151109/autogen.sh-997-	if [ ! "x$_marker_found" = "x" ] ; then
4store-1.1.6+20151109/autogen.sh:998:	    $VERBOSE_ECHO "${_marker_found_message}`basename \"$CONFIGURE\"`"
4store-1.1.6+20151109/autogen.sh-999-	    break
4store-1.1.6+20151109/autogen.sh-1000-	fi
4store-1.1.6+20151109/autogen.sh:1001:	if test -f "`dirname \"$CONFIGURE\"/Makefile.am`" ; then
4store-1.1.6+20151109/autogen.sh:1002:	    _marker_found="`grep 'AUTOMAKE_OPTIONS.*'${marker} Makefile.am`"
4store-1.1.6+20151109/autogen.sh-1003-	    if [ ! "x$_marker_found" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-1024-	    $ECHO
4store-1.1.6+20151109/autogen.sh:1025:	    $ECHO "Considered adding 'foreign' to AM_INIT_AUTOMAKE in `basename \"$CONFIGURE\"`"
4store-1.1.6+20151109/autogen.sh:1026:	    if test -f "`dirname \"$CONFIGURE\"/Makefile.am`" ; then
4store-1.1.6+20151109/autogen.sh-1027-		$ECHO "or to AUTOMAKE_OPTIONS in your top-level Makefile.am file."
##############################################
4store-1.1.6+20151109/autogen.sh-1110-
4store-1.1.6+20151109/autogen.sh:1111:	__cmd_version=`${__cmd} --version | head -n 1 | sed -e 's/^[^0-9]\+//' -e 's/ .*//'`
4store-1.1.6+20151109/autogen.sh-1112-	$VERBOSE_ECHO "Found ${__cmd} ${__cmd_version}"
##############################################
4store-1.1.6+20151109/autogen.sh-1149-	$VERBOSE_ECHO "Searching for $feature in $CONFIGURE"
4store-1.1.6+20151109/autogen.sh:1150:	found="`grep \"^$feature.*\" $CONFIGURE`"
4store-1.1.6+20151109/autogen.sh-1151-	if [ ! "x$found" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-1169-    $VERBOSE_ECHO "$AUTORECONF $SEARCH_DIRS $AUTORECONF_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1170:    autoreconf_output="`$AUTORECONF $SEARCH_DIRS $AUTORECONF_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1171-    ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1175-	if [ "x$HAVE_ALT_LIBTOOLIZE" = "xyes" ] ; then
4store-1.1.6+20151109/autogen.sh:1176:	    if [ ! "x`echo \"$autoreconf_output\" | grep libtoolize | grep \"No such file or directory\"`" = "x" ] ; then
4store-1.1.6+20151109/autogen.sh-1177-		$ECHO
##############################################
4store-1.1.6+20151109/autogen.sh-1234-    if test -f "$LIBTOOL_M4" ; then
4store-1.1.6+20151109/autogen.sh:1235:	found_libtool="`$ECHO $_autoconf_output | grep AC_PROG_LIBTOOL`"
4store-1.1.6+20151109/autogen.sh-1236-	if test ! "x$found_libtool" = "x" ; then
##############################################
4store-1.1.6+20151109/autogen.sh-1279-    $VERBOSE_ECHO "$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1280:    aclocal_output="`$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1281-    ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1290-	    $VERBOSE_ECHO "$LIBTOOLIZE $LIBTOOLIZE_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1291:	    libtoolize_output="`$LIBTOOLIZE $LIBTOOLIZE_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1292-	    ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1298-		$VERBOSE_ECHO "$LIBTOOLIZE $ALT_LIBTOOLIZE_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1299:		libtoolize_output="`$LIBTOOLIZE $ALT_LIBTOOLIZE_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1300-		ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1311-	$VERBOSE_ECHO "$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1312:	aclocal_output="`$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1313-	ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1340-    $VERBOSE_ECHO "$AUTOCONF $AUTOCONF_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1341:    autoconf_output="`$AUTOCONF $AUTOCONF_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1342-    ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1351-	macros_to_search=""
4store-1.1.6+20151109/autogen.sh:1352:	ac_major="`echo ${AUTOCONF_VERSION}. | cut -d. -f1 | sed 's/[^0-9]//g'`"
4store-1.1.6+20151109/autogen.sh:1353:	ac_minor="`echo ${AUTOCONF_VERSION}. | cut -d. -f2 | sed 's/[^0-9]//g'`"
4store-1.1.6+20151109/autogen.sh-1354-
##############################################
4store-1.1.6+20151109/autogen.sh-1369-	    $VERBOSE_ECHO "Searching for $feature in $CONFIGURE"
4store-1.1.6+20151109/autogen.sh:1370:	    found="`grep \"^$feature.*\" $CONFIGURE`"
4store-1.1.6+20151109/autogen.sh-1371-	    if [ ! "x$found" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-1382-	    $ECHO
4store-1.1.6+20151109/autogen.sh:1383:	    $ECHO "The `basename \"$CONFIGURE\"` file was scanned in order to determine if any"
4store-1.1.6+20151109/autogen.sh-1384-	    $ECHO "unsupported macros are used that exceed the minimum version"
##############################################
4store-1.1.6+20151109/autogen.sh-1398-	$VERBOSE_ECHO "$AUTOCONF"
4store-1.1.6+20151109/autogen.sh:1399:	autoconf_output="`$AUTOCONF 2>&1`"
4store-1.1.6+20151109/autogen.sh-1400-	ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1426-		$ECHO "reviewing the minimum GNU Autotools version settings contained in"
4store-1.1.6+20151109/autogen.sh:1427:		$ECHO "this script along with the macros being used in your `basename \"$CONFIGURE\"` file."
4store-1.1.6+20151109/autogen.sh-1428-	    fi
##############################################
4store-1.1.6+20151109/autogen.sh-1439-	$VERBOSE_ECHO "Searching for $feature in $CONFIGURE"
4store-1.1.6+20151109/autogen.sh:1440:	found="`grep \"^$feature.*\" $CONFIGURE`"
4store-1.1.6+20151109/autogen.sh-1441-	if [ ! "x$found" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-1447-	$VERBOSE_ECHO "$AUTOHEADER $AUTOHEADER_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1448:	autoheader_output="`$AUTOHEADER $AUTOHEADER_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1449-	ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1459-	$VERBOSE_ECHO "Searching for $feature in $CONFIGURE"
4store-1.1.6+20151109/autogen.sh:1460:	found="`grep \"^$feature.*\" $CONFIGURE`"
4store-1.1.6+20151109/autogen.sh-1461-	if [ ! "x$found" = "x" ] ; then
##############################################
4store-1.1.6+20151109/autogen.sh-1468-	$VERBOSE_ECHO "$AUTOMAKE $AUTOMAKE_OPTIONS"
4store-1.1.6+20151109/autogen.sh:1469:	automake_output="`$AUTOMAKE $AUTOMAKE_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1470-	ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1480-	    # retry without the -f
4store-1.1.6+20151109/autogen.sh:1481:	    automake_output="`$AUTOMAKE $ALT_AUTOMAKE_OPTIONS 2>&1`"
4store-1.1.6+20151109/autogen.sh-1482-	    ret=$?
##############################################
4store-1.1.6+20151109/autogen.sh-1549-config_ac="`locate_configure_template`"
4store-1.1.6+20151109/autogen.sh:1550:config="`echo $config_ac | sed 's/\.ac$//' | sed 's/\.in$//'`"
4store-1.1.6+20151109/autogen.sh-1551-if [ "x$config" = "x" ] ; then
##############################################
4store-1.1.6+20151109/src/admin/admin.c-197-/* get single node_addr based on matching host name in config file */
4store-1.1.6+20151109/src/admin/admin.c:198:static fsa_node_addr *node_name_to_node_addr(char *name)
4store-1.1.6+20151109/src/admin/admin.c-199-{
##############################################
4store-1.1.6+20151109/src/admin/admin.c-253-/* gets host info from config file based on node number (starting at 0) */
4store-1.1.6+20151109/src/admin/admin.c:254:static fsa_node_addr *node_num_to_node_addr(int node_num)
4store-1.1.6+20151109/src/admin/admin.c-255-{
##############################################
4store-1.1.6+20151109/src/admin/admin.c-531-
4store-1.1.6+20151109/src/admin/admin.c:532:            fsa_node_addr *node = node_num_to_node_addr(node_num);
4store-1.1.6+20151109/src/admin/admin.c-533-            if (node == NULL) {
##############################################
4store-1.1.6+20151109/src/admin/admin.c-1566-            int node_num = atoi(host_or_nodenum);
4store-1.1.6+20151109/src/admin/admin.c:1567:            nodes = node_num_to_node_addr(node_num);
4store-1.1.6+20151109/src/admin/admin.c-1568-            if (nodes == NULL) {
##############################################
4store-1.1.6+20151109/src/admin/admin.c-1575-            /* get host by name */
4store-1.1.6+20151109/src/admin/admin.c:1576:            nodes = node_name_to_node_addr(host_or_nodenum);
4store-1.1.6+20151109/src/admin/admin.c-1577-            if (nodes == NULL) {
##############################################
4store-1.1.6+20151109/src/common/error.c-68-
4store-1.1.6+20151109/src/common/error.c:69:        while (bp && ip && dladdr(ip, &info)) {
4store-1.1.6+20151109/src/common/error.c-70-            fsp_log(severity, "% 2d: %p <%s+%u> %s", f++, ip, info.dli_sname, (unsigned int)(ip - info.dli_saddr), basename((char *)info.dli_fname));
##############################################
4store-1.1.6+20151109/src/common/umac.c-188-{
4store-1.1.6+20151109/src/common/umac.c:189:    __asm {
4store-1.1.6+20151109/src/common/umac.c-190-        mov eax, p
##############################################
4store-1.1.6+20151109/src/common/umac.c-197-{
4store-1.1.6+20151109/src/common/umac.c:198:    __asm {
4store-1.1.6+20151109/src/common/umac.c-199-        mov eax,x
##############################################
4store-1.1.6+20151109/src/common/umac.c-210-    UINT32 temp;
4store-1.1.6+20151109/src/common/umac.c:211:    asm volatile("bswap %0" : "=r" (temp) : "0" (*(UINT32 *)ptr)); 
4store-1.1.6+20151109/src/common/umac.c-212-    return temp;
##############################################
4store-1.1.6+20151109/src/common/umac.c-216-{
4store-1.1.6+20151109/src/common/umac.c:217:    asm volatile("bswap %0" : "=r" (*(UINT32 *)ptr) : "0" (x)); 
4store-1.1.6+20151109/src/common/umac.c-218-}
##############################################
4store-1.1.6+20151109/src/common/umac.c-437-    movdqa xmm2, n[ecx] \
4store-1.1.6+20151109/src/common/umac.c:438:    __asm movdqa xmm0, n[eax] \
4store-1.1.6+20151109/src/common/umac.c:439:    __asm movdqa xmm3, n+16[ecx] \
4store-1.1.6+20151109/src/common/umac.c:440:    __asm movdqa xmm1, n+16[eax] \
4store-1.1.6+20151109/src/common/umac.c:441:    __asm paddd xmm2, xmm0 \
4store-1.1.6+20151109/src/common/umac.c:442:    __asm paddd xmm3, xmm1 \
4store-1.1.6+20151109/src/common/umac.c:443:    __asm movdqa xmm5, xmm2 \
4store-1.1.6+20151109/src/common/umac.c:444:    __asm pmuludq xmm2, xmm3 \
4store-1.1.6+20151109/src/common/umac.c:445:    __asm psrldq xmm3, 4 \
4store-1.1.6+20151109/src/common/umac.c:446:    __asm paddq xmm6, xmm2 \
4store-1.1.6+20151109/src/common/umac.c:447:    __asm psrldq xmm5, 4 \
4store-1.1.6+20151109/src/common/umac.c:448:    __asm pmuludq xmm3, xmm5 \
4store-1.1.6+20151109/src/common/umac.c:449:    __asm paddq xmm6, xmm3
4store-1.1.6+20151109/src/common/umac.c-450-
##############################################
4store-1.1.6+20151109/src/common/umac.c-490-    movdqa xmm0, n[eax] \
4store-1.1.6+20151109/src/common/umac.c:491:    __asm movdqa xmm3, n+16[ecx] \
4store-1.1.6+20151109/src/common/umac.c:492:    __asm movdqa xmm1, n+16[eax] \
4store-1.1.6+20151109/src/common/umac.c:493:    __asm paddd xmm2, xmm0 \
4store-1.1.6+20151109/src/common/umac.c:494:    __asm movdqa xmm4, xmm3 \
4store-1.1.6+20151109/src/common/umac.c:495:    __asm paddd xmm3, xmm1 \
4store-1.1.6+20151109/src/common/umac.c:496:    __asm movdqa xmm5, xmm2 \
4store-1.1.6+20151109/src/common/umac.c:497:    __asm pmuludq xmm2, xmm3 \
4store-1.1.6+20151109/src/common/umac.c:498:    __asm psrldq xmm3, 4 \
4store-1.1.6+20151109/src/common/umac.c:499:    __asm paddq xmm6, xmm2 \
4store-1.1.6+20151109/src/common/umac.c:500:    __asm movdqa xmm2, n+32[ecx] \
4store-1.1.6+20151109/src/common/umac.c:501:    __asm psrldq xmm5, 4 \
4store-1.1.6+20151109/src/common/umac.c:502:    __asm pmuludq xmm3, xmm5 \
4store-1.1.6+20151109/src/common/umac.c:503:    __asm paddd xmm1, xmm2 \
4store-1.1.6+20151109/src/common/umac.c:504:    __asm paddd xmm4, xmm0 \
4store-1.1.6+20151109/src/common/umac.c:505:    __asm paddq xmm6, xmm3 \
4store-1.1.6+20151109/src/common/umac.c:506:    __asm movdqa xmm3, xmm4 \
4store-1.1.6+20151109/src/common/umac.c:507:    __asm pmuludq xmm4, xmm1 \
4store-1.1.6+20151109/src/common/umac.c:508:    __asm psrldq xmm1, 4 \
4store-1.1.6+20151109/src/common/umac.c:509:    __asm psrldq xmm3, 4 \
4store-1.1.6+20151109/src/common/umac.c:510:    __asm pmuludq xmm3, xmm1 \
4store-1.1.6+20151109/src/common/umac.c:511:    __asm paddq xmm7, xmm4 \
4store-1.1.6+20151109/src/common/umac.c:512:    __asm paddq xmm7, xmm3
4store-1.1.6+20151109/src/common/umac.c-513-
##############################################
4store-1.1.6+20151109/src/common/umac.c-579-  UINT32 d1,d2,d3;
4store-1.1.6+20151109/src/common/umac.c:580:  asm volatile (
4store-1.1.6+20151109/src/common/umac.c-581-        "sub $128, %2\n\t"
##############################################
4store-1.1.6+20151109/src/common/umac.c-644-  UINT32 d1,d2,d3;
4store-1.1.6+20151109/src/common/umac.c:645:  asm volatile (
4store-1.1.6+20151109/src/common/umac.c-646-        "sub $128, %2\n\t"
##############################################
4store-1.1.6+20151109/src/common/umac.c-720-    mov eax,n[ebx]   \
4store-1.1.6+20151109/src/common/umac.c:721:    __asm mov edx,n+16[ebx] \
4store-1.1.6+20151109/src/common/umac.c:722:    __asm add eax,n[ecx]   \
4store-1.1.6+20151109/src/common/umac.c:723:    __asm add edx,n+16[ecx] \
4store-1.1.6+20151109/src/common/umac.c:724:    __asm mul edx         \
4store-1.1.6+20151109/src/common/umac.c:725:    __asm add esi,eax      \
4store-1.1.6+20151109/src/common/umac.c:726:    __asm adc edi,edx
4store-1.1.6+20151109/src/common/umac.c-727-
##############################################
4store-1.1.6+20151109/src/common/umac.c-802-  
4store-1.1.6+20151109/src/common/umac.c:803:  asm volatile (
4store-1.1.6+20151109/src/common/umac.c-804-    "\n\t"
##############################################
4store-1.1.6+20151109/src/common/umac.c-1508-    UINT32 dummy1, dummy2;
4store-1.1.6+20151109/src/common/umac.c:1509:    asm volatile(
4store-1.1.6+20151109/src/common/umac.c-1510-        "pushl %%ebp\n\t"
##############################################
4store-1.1.6+20151109/src/common/umac.c-1558-{
4store-1.1.6+20151109/src/common/umac.c:1559:    asm volatile(
4store-1.1.6+20151109/src/common/umac.c-1560-        "movl %%edx,%%edi\n\t"
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-107-				$uri =~ s/^file://;
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:108:				$query{$node} = `cat $uri`;
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-109-			} elsif ($2 eq 'data' || $2 eq 'graphData') {
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-193-				$uri =~ s/^file://;
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:194:				$q = `cat $uri`;
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-195-			}
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-247-	print("\n<!-- ");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:248:	&exec($name, "../frontend/4s-delete-model dawg_test --all");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-249-	for $file (@{ $data }) {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:250:		if (&exec($name, "../frontend/4s-import dawg_test $file")) {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-251-			&fail($uri);
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-273-	$query =~ s/'/'\\''/g;
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:274:	my $execret = &exec($name, "../frontend/4s-query dawg_test -f testcase '$query' > $tmpfile");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-275-	my $expected = $negative ? 1 : 0;
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-292-		$res_tmp = "/tmp/$$.ttl";
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:293:		system("xsltproc srx2ttl.xsl $result > $res_tmp");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-294-		$cmp_res = $res_tmp;
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-314-		} else {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:315:			system("roqet -q -r xml -e 'PREFIX : <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> SELECT ?row ?var ?val WHERE { ?row :variable ?var ; :value ?val }' -s '$cmp_res' > results.xml");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-316-			open(RES, "xsltproc sparql2html.xslt results.xml |");
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-327-			$ntfileb = "/tmp/ntb-$$.nt";
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:328:			system("rapper -g -o ntriples -q $tmpfile | sed 's/_\\([0-9][0-9]*\\) /b\\1 /' > $ntfilea");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:329:			#system("rapper -g -o ntriples -q $tmpfile > $ntfilea");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:330:			system("rapper -g -o ntriples -q $cmp_res > $ntfileb");
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-331-#print STDERR "TP=$tmpfile CR=$cmp_res\n"
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-336-		}
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:337:		if ($isotest && `./rdfdiff.py $ntfilea $ntfileb` !~ /yes/) {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-338-			&fail($uri);
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-343-			#print STDERR "copied to explan/$name-result.ttl\n";
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:344:		} elsif (!$isotest && system("./result-diff.pl $tmpfile $cmp_res > explan/$name.diff 2> explan/$name-error.txt")) {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-345-			&fail($uri);
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-382-	print "$xmlcmd\n";
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:383:	if (system($cmd." 2>explan/$name-error.txt")) {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-384-		$out = $?;
##############################################
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-444-
4store-1.1.6+20151109/src/dawg-tests/runtest.pl:445:	if (system("cp '$a' '$b'") != 0) {
4store-1.1.6+20151109/src/dawg-tests/runtest.pl-446-		die "cannot copy $a to $b: $!\n";
##############################################
4store-1.1.6+20151109/src/frontend/4s-query.c-439-                    double now = fs_time();
4store-1.1.6+20151109/src/frontend/4s-query.c:440:                    printf("# execution time %.3fs\n", now-then);
4store-1.1.6+20151109/src/frontend/4s-query.c-441-                }
##############################################
4store-1.1.6+20151109/src/http/httpd.c-460-    if (rows_returned > -1) {
4store-1.1.6+20151109/src/http/httpd.c:461:      fprintf(ql_file, "#### execution time for Q%u: %fs, returned %d rows.\n", ctxt->query_id, fs_time() - ctxt->start_time, rows_returned);
4store-1.1.6+20151109/src/http/httpd.c-462-    }
4store-1.1.6+20151109/src/http/httpd.c-463-    else {
4store-1.1.6+20151109/src/http/httpd.c:464:      fprintf(ql_file, "#### execution time for Q%u: %fs\n", ctxt->query_id, fs_time() - ctxt->start_time);
4store-1.1.6+20151109/src/http/httpd.c-465-    }
##############################################
4store-1.1.6+20151109/src/utilities/4s-restore-30-			print("$cmd\n");
4store-1.1.6+20151109/src/utilities/4s-restore:31:			system($cmd);
4store-1.1.6+20151109/src/utilities/4s-restore-32-			$cmd = "";
##############################################
4store-1.1.6+20151109/src/utilities/4s-restore-41-	print("$cmd\n");
4store-1.1.6+20151109/src/utilities/4s-restore:42:	system($cmd);
4store-1.1.6+20151109/src/utilities/4s-restore-43-}
##############################################
4store-1.1.6+20151109/tests/admin/run.pl-8-
4store-1.1.6+20151109/tests/admin/run.pl:9:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/admin/run.pl-10-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/admin/run.pl-111-
4store-1.1.6+20151109/tests/admin/run.pl:112:            my $ret = system("EPR=http://localhost:13579 LANG=C LC_ALL=C TESTPATH=../../src scripts/$t > $outdir/$t $errout");
4store-1.1.6+20151109/tests/admin/run.pl-113-            if ($ret == 2) {
##############################################
4store-1.1.6+20151109/tests/admin/run.pl-123-            elsif ($test) {
4store-1.1.6+20151109/tests/admin/run.pl:124:                @diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/admin/run.pl-125-                if (@diff) {
##############################################
4store-1.1.6+20151109/tests/admin/run.pl-197-    if ($spawn_backend) {
4store-1.1.6+20151109/tests/admin/run.pl:198:        system('../../src/utilities/4s-backend-setup', "$kb_name");
4store-1.1.6+20151109/tests/admin/run.pl-199-        close(STDERR);
4store-1.1.6+20151109/tests/admin/run.pl:200:        exec("../../src/backend/4s-backend", "-D", "-l", "2.0", "$kb_name");
4store-1.1.6+20151109/tests/admin/run.pl-201-        die "failed to exec sever: $!";
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-14-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:15:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-16-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-23-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:24:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-25-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-32-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:33:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-34-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-41-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:42:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-43-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-50-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:51:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-52-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-59-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:60:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-61-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-68-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:69:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-70-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-77-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:78:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-79-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-86-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:87:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-88-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-95-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:96:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-97-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-104-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:105:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-106-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-113-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:114:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-115-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-122-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:123:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-124-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-131-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:132:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-133-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-140-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:141:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-142-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/create-store-149-CMD="$FS_ADMIN --config-file $FS_CONF $ARGS"
4store-1.1.6+20151109/tests/admin/scripts/create-store:150:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/create-store-151-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/delete-stores-13-CMD="$FS_ADMIN --config-file $FS_CONF delete-stores 4s_admin_test_kb2 4s_admin_test_kb3"
4store-1.1.6+20151109/tests/admin/scripts/delete-stores:14:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/delete-stores-15-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/delete-stores-19-
4store-1.1.6+20151109/tests/admin/scripts/delete-stores:20:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/delete-stores-21-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/delete-stores-26-CMD="$FS_ADMIN --config-file $FS_CONF delete-stores 4s_admin_test_kb2 invalid-store-name"
4store-1.1.6+20151109/tests/admin/scripts/delete-stores:27:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/delete-stores-28-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/list-nodes-7-# remove IP address, since this won't be consistent
4store-1.1.6+20151109/tests/admin/scripts/list-nodes:8:OUTPUT=`$CMD | perl -pe 's/\s+[^ ]+$/\n/ if $. > 1;'`
4store-1.1.6+20151109/tests/admin/scripts/list-nodes-9-EXITSTATUS=${PIPESTATUS[0]}
##############################################
4store-1.1.6+20151109/tests/admin/scripts/list-stores-14-
4store-1.1.6+20151109/tests/admin/scripts/list-stores:15:OUTPUT=`$CMD | perl -ne 'next unless /^(?:4s_admin_test_kb|store_name)/;@a=split(/\s+/, $_, 2);printf("%-17s %s", $a[0], $a[1])'`
4store-1.1.6+20151109/tests/admin/scripts/list-stores-16-EXITSTATUS=${PIPESTATUS[0]}
##############################################
4store-1.1.6+20151109/tests/admin/scripts/start-stores-14-CMD="$FS_ADMIN --config-file $FS_CONF start-stores 4s_admin_test_kb2 4s_admin_test_kb3"
4store-1.1.6+20151109/tests/admin/scripts/start-stores:15:OUTPUT=`$CMD | perl -ne 'next unless /^(?:\s+4s_admin_test_kb|node_number |0 |  store_name )/;print'`
4store-1.1.6+20151109/tests/admin/scripts/start-stores-16-EXITSTATUS=${PIPESTATUS[0]}
##############################################
4store-1.1.6+20151109/tests/admin/scripts/start-stores-22-CMD="$FS_ADMIN --config-file $FS_CONF start-stores invalid-store-name"
4store-1.1.6+20151109/tests/admin/scripts/start-stores:23:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/start-stores-24-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/start-stores-32-CMD="$FS_ADMIN --config-file $FS_CONF start-stores 4s_admin_test_kb2 non_existent_store"
4store-1.1.6+20151109/tests/admin/scripts/start-stores:33:OUTPUT=`$CMD | perl -ne 'next unless /^(?:\s+4s_admin_test_kb|\s+non_existent_store|node_number |0 |  store_name )/;print'`
4store-1.1.6+20151109/tests/admin/scripts/start-stores-34-EXITSTATUS=${PIPESTATUS[0]}
##############################################
4store-1.1.6+20151109/tests/admin/scripts/stop-stores-14-CMD="$FS_ADMIN --config-file $FS_CONF stop-stores 4s_admin_test_kb2 4s_admin_test_kb3"
4store-1.1.6+20151109/tests/admin/scripts/stop-stores:15:OUTPUT=`$CMD | perl -ne 'next unless /^(?:\s+4s_admin_test_kb|node_number |0 |  store_name )/;print'`
4store-1.1.6+20151109/tests/admin/scripts/stop-stores-16-EXITSTATUS=${PIPESTATUS[0]}
##############################################
4store-1.1.6+20151109/tests/admin/scripts/stop-stores-22-CMD="$FS_ADMIN --config-file $FS_CONF stop-stores invalid-store-name"
4store-1.1.6+20151109/tests/admin/scripts/stop-stores:23:OUTPUT=`$CMD`
4store-1.1.6+20151109/tests/admin/scripts/stop-stores-24-EXITSTATUS=$?
##############################################
4store-1.1.6+20151109/tests/admin/scripts/stop-stores-32-CMD="$FS_ADMIN --config-file $FS_CONF stop-stores 4s_admin_test_kb2 non_existent_store"
4store-1.1.6+20151109/tests/admin/scripts/stop-stores:33:OUTPUT=`$CMD | perl -ne 'next unless /^(?:\s+4s_admin_test_kb|\s+non_existent_store|node_number |0 |  store_name)/;print'`
4store-1.1.6+20151109/tests/admin/scripts/stop-stores-34-EXITSTATUS=${PIPESTATUS[0]}
##############################################
4store-1.1.6+20151109/tests/benchmark/http.pl-10-
4store-1.1.6+20151109/tests/benchmark/http.pl:11:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/benchmark/http.pl-12-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/benchmark/run.pl-12-
4store-1.1.6+20151109/tests/benchmark/run.pl:13:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/benchmark/run.pl-14-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/httpd-extras/run.pl-7-
4store-1.1.6+20151109/tests/httpd-extras/run.pl:8:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/httpd-extras/run.pl-9-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/httpd-extras/run.pl-84-		print("[....] $t\r[");
4store-1.1.6+20151109/tests/httpd-extras/run.pl:85:		my $ret = system("EPR=http://127.0.0.1:13579 LANG=C LC_ALL=C TESTPATH=../../src scripts/$t > $outdir/$t $errout");
4store-1.1.6+20151109/tests/httpd-extras/run.pl-86-		if ($ret == 2) {
##############################################
4store-1.1.6+20151109/tests/httpd-extras/run.pl-94-		} elsif ($test) {
4store-1.1.6+20151109/tests/httpd-extras/run.pl:95:			@diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/httpd-extras/run.pl-96-			if (@diff) {
##############################################
4store-1.1.6+20151109/tests/httpd-extras/run.pl-139-	if ($spawn) {
4store-1.1.6+20151109/tests/httpd-extras/run.pl:140:		system('../../src/utilities/4s-backend-setup', "$kb_name");
4store-1.1.6+20151109/tests/httpd-extras/run.pl-141-		close(STDERR);
4store-1.1.6+20151109/tests/httpd-extras/run.pl:142:		exec("../../src/backend/4s-backend", "-D", "-l", "2.0", "$kb_name");
4store-1.1.6+20151109/tests/httpd-extras/run.pl-143-		die "failed to exec sever: $!";
##############################################
4store-1.1.6+20151109/tests/httpd-extras/sparql.sh-1-function uriescape {
4store-1.1.6+20151109/tests/httpd-extras/sparql.sh:2:	escaped=`echo "$1" | tr '\012\015' '  ' | sed 's/ /%20/g; s/#/%23/g; s/\*/\\*/g; s/{/\\\{/g; s/}/\\\}/g; s/\?/%3f/g; s/&/%38/g; s/+/%2b/g; s/"/\\"/g; s/\[/\\\[/g; s/\]/\\\]/g; s/%20$//'`
4store-1.1.6+20151109/tests/httpd-extras/sparql.sh-3-}
##############################################
4store-1.1.6+20151109/tests/httpd-extras/sparql.sh-5-function postescape {
4store-1.1.6+20151109/tests/httpd-extras/sparql.sh:6:	escaped=`echo "$1" | sed 's/ /%20/g; s/\*/\\*/g; s/\?/%3f/g; s/&/%38/g; s/+/%2b/g;'`
4store-1.1.6+20151109/tests/httpd-extras/sparql.sh-7-}
##############################################
4store-1.1.6+20151109/tests/httpd/run.pl-7-
4store-1.1.6+20151109/tests/httpd/run.pl:8:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/httpd/run.pl-9-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/httpd/run.pl-84-		print("[....] $t\r[");
4store-1.1.6+20151109/tests/httpd/run.pl:85:		my $ret = system("EPR=http://127.0.0.1:13579 LANG=C LC_ALL=C TESTPATH=../../src scripts/$t > $outdir/$t $errout");
4store-1.1.6+20151109/tests/httpd/run.pl-86-		if ($ret == 2) {
##############################################
4store-1.1.6+20151109/tests/httpd/run.pl-94-		} elsif ($test) {
4store-1.1.6+20151109/tests/httpd/run.pl:95:			@diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/httpd/run.pl-96-			if (@diff) {
##############################################
4store-1.1.6+20151109/tests/httpd/run.pl-139-	if ($spawn) {
4store-1.1.6+20151109/tests/httpd/run.pl:140:		system('../../src/utilities/4s-backend-setup', "$kb_name");
4store-1.1.6+20151109/tests/httpd/run.pl-141-		close(STDERR);
4store-1.1.6+20151109/tests/httpd/run.pl:142:		exec("../../src/backend/4s-backend", "-D", "-l", "2.0", "$kb_name");
4store-1.1.6+20151109/tests/httpd/run.pl-143-		die "failed to exec sever: $!";
##############################################
4store-1.1.6+20151109/tests/httpd/scripts/functions-rand-7-put "$EPR" ../../data/numbers.ttl 'text/turtle' 'http://example.com/numbers.ttl'
4store-1.1.6+20151109/tests/httpd/scripts/functions-rand:8:OUTPUT=`sparql "$EPR" 'SELECT ?s (RAND() AS ?r) WHERE { ?s ?p ?o. } LIMIT 1' | tail -1 | grep -c "0\.[0-9]\{17\}e0"`
4store-1.1.6+20151109/tests/httpd/scripts/functions-rand-9-delete "$EPR" 'http://example.com/numbers.ttl'
##############################################
4store-1.1.6+20151109/tests/httpd/sparql.sh-1-function uriescape {
4store-1.1.6+20151109/tests/httpd/sparql.sh:2:	escaped=`echo "$1" | tr '\012\015' '  ' | sed 's/ /%20/g; s/#/%23/g; s/\*/\\*/g; s/{/\\\{/g; s/}/\\\}/g; s/\?/%3f/g; s/&/%38/g; s/+/%2b/g; s/"/\\"/g; s/\[/\\\[/g; s/\]/\\\]/g; s/%20$//'`
4store-1.1.6+20151109/tests/httpd/sparql.sh-3-}
##############################################
4store-1.1.6+20151109/tests/httpd/sparql.sh-5-function postescape {
4store-1.1.6+20151109/tests/httpd/sparql.sh:6:	escaped=`echo "$1" | sed 's/ /%20/g; s/\*/\\*/g; s/\?/%3f/g; s/&/%38/g; s/+/%2b/g;'`
4store-1.1.6+20151109/tests/httpd/sparql.sh-7-}
##############################################
4store-1.1.6+20151109/tests/import/cluster-run.pl-4-
4store-1.1.6+20151109/tests/import/cluster-run.pl:5:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/import/cluster-run.pl-6-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/import/cluster-run.pl-51-	printf(".... $t\r");
4store-1.1.6+20151109/tests/import/cluster-run.pl:52:	system("CLUSTER=yes FORMAT=ascii LANG=C TESTPATH=../../src scripts/$t $kb_name > $outdir/$t $errout");
4store-1.1.6+20151109/tests/import/cluster-run.pl-53-	if ($test) {
4store-1.1.6+20151109/tests/import/cluster-run.pl:54:		@diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/import/cluster-run.pl-55-		if (@diff) {
##############################################
4store-1.1.6+20151109/tests/import/cluster-run.pl-65-	}
4store-1.1.6+20151109/tests/import/cluster-run.pl:66:	system("4s-cluster-destroy $kb_name >/dev/null 2>&1");
4store-1.1.6+20151109/tests/import/cluster-run.pl-67-}
##############################################
4store-1.1.6+20151109/tests/import/run.pl-6-
4store-1.1.6+20151109/tests/import/run.pl:7:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/import/run.pl-8-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/import/run.pl-62-	printf("[....] $t\r");
4store-1.1.6+20151109/tests/import/run.pl:63:	$ret = system("FORMAT=text LANG=C TESTPATH=../../src ${pre} scripts/$t $kb_name > $outdir/$t $errout");
4store-1.1.6+20151109/tests/import/run.pl-64-	if ($ret == 2) {
4store-1.1.6+20151109/tests/import/run.pl-65-		printf("\n");
4store-1.1.6+20151109/tests/import/run.pl:66:		system("./test-stop.sh $kb_name");
4store-1.1.6+20151109/tests/import/run.pl:67:		system("../../src/utilities/4s-backend-destroy $kb_name 2>/dev/null");
4store-1.1.6+20151109/tests/import/run.pl-68-		exit(2);
##############################################
4store-1.1.6+20151109/tests/import/run.pl-71-	if ($test) {
4store-1.1.6+20151109/tests/import/run.pl:72:		#system("../../src/backend/slistdump --check s /var/lib/4store/$kb_name/*/s.slist >> $outdir/$t");
4store-1.1.6+20151109/tests/import/run.pl:73:		@diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/import/run.pl-74-		if (@diff) {
##############################################
4store-1.1.6+20151109/tests/import/run.pl-92-			if ($valgrind) {
4store-1.1.6+20151109/tests/import/run.pl:93:				system("grep 'ERROR SUMMARY' $outdir/$t-errs | grep -v '0 errors from 0 contexts'");
4store-1.1.6+20151109/tests/import/run.pl-94-			} else {
##############################################
4store-1.1.6+20151109/tests/import/run.pl-100-	}
4store-1.1.6+20151109/tests/import/run.pl:101:	system("../../src/utilities/4s-backend-destroy $kb_name 2>/dev/null") if $destroy;
4store-1.1.6+20151109/tests/import/run.pl-102-}
##############################################
4store-1.1.6+20151109/tests/load/run.pl-7-
4store-1.1.6+20151109/tests/load/run.pl:8:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/load/run.pl-9-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/load/run.pl-21-	} else {
4store-1.1.6+20151109/tests/load/run.pl:22:		exec('valgrind', '--trace-children=yes', '--log-file=valgrind.txt', "../../src/http/4s-httpd", "-X", "-D", "-p", "13579", $kb_name);
4store-1.1.6+20151109/tests/load/run.pl:23:		#exec("../../src/http/4s-httpd", "-X", "-D", "-p", "13579", $kb_name);
4store-1.1.6+20151109/tests/load/run.pl-24-		die "failed to exec HTTP sever: $!";
##############################################
4store-1.1.6+20151109/tests/load/run.pl-32-		unless (fork()) {
4store-1.1.6+20151109/tests/load/run.pl:33:			exec("EPR=http://localhost:13579 LANG=C LC_ALL=C TESTPATH=../../src ./query.sh > results-$t.txt");
4store-1.1.6+20151109/tests/load/run.pl-34-		}
##############################################
4store-1.1.6+20151109/tests/load/run.pl-65-	close(STDERR);
4store-1.1.6+20151109/tests/load/run.pl:66:	exec("../../src/backend/4s-backend", "-D", $kb_name);
4store-1.1.6+20151109/tests/load/run.pl-67-	die "failed to exec sever: $!";
##############################################
4store-1.1.6+20151109/tests/load/sparql.sh-1-function uriescape {
4store-1.1.6+20151109/tests/load/sparql.sh:2:	escaped=`echo "$1" | sed 's/ /%20/g; s/\*/\\*/g; s/{/\\\{/g; s/}/\\\}/g; s/\?/%3f/g; s/&/%38/g; s/+/%2b/g; s/"/\\"/g; s/\[/\\\[/g; s/\]/\\\]/g'`
4store-1.1.6+20151109/tests/load/sparql.sh-3-}
##############################################
4store-1.1.6+20151109/tests/load/sparql.sh-5-function postescape {
4store-1.1.6+20151109/tests/load/sparql.sh:6:	escaped=`echo "$1" | sed 's/ /%20/g; s/\*/\\*/g; s/\?/%3f/g; s/&/%38/g; s/+/%2b/g;'`
4store-1.1.6+20151109/tests/load/sparql.sh-7-}
##############################################
4store-1.1.6+20151109/tests/query/cluster-run.pl-3-$kb_name = "cluster_test";
4store-1.1.6+20151109/tests/query/cluster-run.pl:4:system("4s-cluster-start $kb_name");
4store-1.1.6+20151109/tests/query/cluster-run.pl-5-
##############################################
4store-1.1.6+20151109/tests/query/cluster-run.pl-37-	unlink("$outdir/".$t);
4store-1.1.6+20151109/tests/query/cluster-run.pl:38:	system("FORMAT=ascii LANG=C TESTPATH=../../src scripts/$t $kb_name > $outdir/$t 2>$outdir/$t-errs");
4store-1.1.6+20151109/tests/query/cluster-run.pl-39-	if ($test) {
4store-1.1.6+20151109/tests/query/cluster-run.pl:40:		@diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/query/cluster-run.pl-41-		if (@diff) {
##############################################
4store-1.1.6+20151109/tests/query/cluster-run.pl-51-}
4store-1.1.6+20151109/tests/query/cluster-run.pl:52:system("4s-cluster-stop $kb_name");
##############################################
4store-1.1.6+20151109/tests/query/run.pl-9-
4store-1.1.6+20151109/tests/query/run.pl:10:$dirname=`dirname '$0'`;
4store-1.1.6+20151109/tests/query/run.pl-11-chomp $dirname;
##############################################
4store-1.1.6+20151109/tests/query/run.pl-74-		print("[....] $t\r");
4store-1.1.6+20151109/tests/query/run.pl:75:		my $ret = system("FORMAT=ascii LANG=C LC_ALL=C TESTPATH=../../src CONF='--config-file ../tests_4store.conf' scripts/$t $kb_name > $outdir/$t $errout");
4store-1.1.6+20151109/tests/query/run.pl-76-		if ($ret == 2) {
##############################################
4store-1.1.6+20151109/tests/query/run.pl-85-        } elsif ($test) {
4store-1.1.6+20151109/tests/query/run.pl:86:			@diff = `diff exemplar/$t $outdir/$t 2>/dev/null`;
4store-1.1.6+20151109/tests/query/run.pl-87-			if (@diff) {
##############################################
4store-1.1.6+20151109/tests/query/run.pl-136-print(join(" ", @pre)."\n");
4store-1.1.6+20151109/tests/query/run.pl:137:		exec(@pre, "-D", "$kb_name");
4store-1.1.6+20151109/tests/query/run.pl-138-		die "failed to exec sever: $!";
##############################################
4store-1.1.6+20151109/tests/query/setup.sh-18-else
4store-1.1.6+20151109/tests/query/setup.sh:19:	for pid in `ps uwwx | grep "4s-backend $kb" | awk '{print $2}'`; do
4store-1.1.6+20151109/tests/query/setup.sh-20-		kill $pid 2> /dev/null
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-44- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:45:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-46-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-68- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:69:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-70-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-93- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:94:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-95-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-131- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:132:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-133-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-162- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:163:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-164-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-186- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:187:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-188-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-210- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:211:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-212-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-279- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:280:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-281-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-322- if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch:323:-  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/debian/patches/1009_fix_shell_scripts.patch-324-+  4s-backend --version | sed 's/4s-backend/'"$(basename "$0")"'/'
##############################################
4store-1.1.6+20151109/.pc/1006_modernize_autotools.patch/configure.ac-226-
4store-1.1.6+20151109/.pc/1006_modernize_autotools.patch/configure.ac:227:raptor_version=`$PKG_CONFIG raptor2 --modversion 2>/dev/null`
4store-1.1.6+20151109/.pc/1006_modernize_autotools.patch/configure.ac:228:rasqal_version=`$PKG_CONFIG rasqal --modversion 2>/dev/null`
4store-1.1.6+20151109/.pc/1006_modernize_autotools.patch/configure.ac-229-
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-create-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-create:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-create-10-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-destroy-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-destroy:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-destroy-10-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-file-backup-19-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-file-backup:20:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-file-backup-21-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-info-12-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-info:13:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-info-14-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-start-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-start:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-start-10-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-stop-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-stop:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-cluster-stop-10-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-file-backup-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-file-backup:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-file-backup-10-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-restore-27-			print("$cmd\n");
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-restore:28:			system($cmd);
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-restore-29-			$cmd = "";
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-restore-38-	print("$cmd\n");
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-restore:39:	system($cmd);
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-restore-40-}
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-ssh-all-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-ssh-all:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-ssh-all-10-  exit
##############################################
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-ssh-all-parallel-8-if [ "$1" = '--version' ] ; then
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-ssh-all-parallel:9:  4s-backend --version | sed 's/4s-backend/'`basename $0`'/'
4store-1.1.6+20151109/.pc/1009_fix_shell_scripts.patch/src/utilities/4s-ssh-all-parallel-10-  exit
##############################################
4store-1.1.6+20151109/configure.ac-226-
4store-1.1.6+20151109/configure.ac:227:raptor_version=`$PKG_CONFIG raptor2 --modversion 2>/dev/null`
4store-1.1.6+20151109/configure.ac:228:rasqal_version=`$PKG_CONFIG rasqal --modversion 2>/dev/null`
4store-1.1.6+20151109/configure.ac-229-