#!/bin/sh if [ ! -n "$1" ] then argumento="" else argumento=$* fi pkg_output=`real-pkg-config $argumento` echo ${pkg_output//"C:"/"/C"} exit 0