#!/usr/bin/env bash

# is xmllint available?


which xmllint &>/dev/null
if [ $? -eq 0 ]; then
  printf 'True\n'
else
  printf 'False\n'
fi
