1 2 3 4 5 6 7 8
#!/bin/sh if [ "$1" = "--version" ]; then shift pkg-config gnutls --modversion "$@" else pkg-config gnutls "$@" fi