#!/usr/bin/env bash ### Copyright 1999-2025. WebPros International GmbH. All rights reserved. main() { local daemon="${1:?"Daemon name must be specified as the first parameter"}" systemctl show "${daemon}" --property=LimitNOFILE exit $? } main "$@"