getconf.sh (665B)
- #!/bin/sh
- # SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- # SPDX-License-Identifier: MPL-2.0
- WD="$(dirname "$0")"
- target="${WD}/../cmd/getconf"
- plans=3
- . "${WD}/tap.sh"
- getconf_dupes() { "$target" -a 2>/dev/null | cut -d: -f1 | sort | uniq -d; }
- # utils-std doesn't have sort yet
- if command -v sort >/dev/null 2>/dev/null; then
- t_cmd nodupes '' getconf_dupes
- else
- skip nodupes 'command not found: sort'
- fi
- t_args --exit=1 wrong_sys_var:NAME_MAX 'getconf: error: unknown system_var "NAME_MAX"
- ' NAME_MAX
- t_args --exit=1 wrong_path_var:LOGIN_NAME_MAX 'getconf: error: unknown path_var "LOGIN_NAME_MAX"
- ' LOGIN_NAME_MAX .