12 lines
258 B
Bash
Executable File
12 lines
258 B
Bash
Executable File
#!/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 "$@"
|