logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

getconf.sh (665B)


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