@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux adweb87 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64
Current Path :
/
usr
/
bin
/
Path :
Upload File :
New :
File
Dir
//usr/bin/pcre-config
#!/bin/sh prefix=/usr exec_prefix=/usr exec_prefix_set=no usage="\ Usage: pcre-config [--prefix] [--exec-prefix] [--version] [--libs] [--libs-posix] [--cflags] [--cflags-posix]" if test $# -eq 0; then echo "${usage}" 1>&2 exit 1 fi while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --prefix=*) prefix=$optarg if test $exec_prefix_set = no ; then exec_prefix=$optarg fi ;; --prefix) echo $prefix ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=yes ;; --exec-prefix) echo $exec_prefix ;; --version) echo 7.8 ;; --cflags | --cflags-posix) if test /usr/include != /usr/include ; then includes=-I/usr/include fi echo $includes ;; --libs-posix) echo -lpcreposix -lpcre ;; --libs) echo -lpcre ;; *) echo "${usage}" 1>&2 exit 1 ;; esac shift done