command-args-test.sh 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #!/bin/sh
  2. # Test if the command builtin accepts multiple arguments with -v
  3. # Copyright 2020 orbea
  4. # All rights reserved.
  5. #
  6. # Redistribution and use of this script, with or without modification, is
  7. # permitted provided that the following conditions are met:
  8. #
  9. # 1. Redistributions of this script must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. #
  12. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
  13. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  15. # EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  16. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  17. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  18. # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  19. # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  20. # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  21. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. set -euf
  23. printn () { eval "set -- $1"; printf %s\\n $#; }
  24. rm -rf testdir
  25. trap 'err=$?; rm -rf testdir; trap - EXIT; exit $err' EXIT INT
  26. mkdir testdir
  27. touch testdir/testfile1 testdir/testfile2
  28. chmod 0755 testdir/testfile1 testdir/testfile2
  29. ORIGPATH="$PATH"
  30. PATH=testdir
  31. die=0
  32. cmd="$(command -v testfile1 testfile2)" || die=1
  33. PATH="$ORIGPATH"
  34. [ $die != 1 ] || exit 1
  35. test=
  36. for i in $(printf %s "$cmd"); do
  37. test="${test} $i"
  38. done
  39. [ "$(printn "$test")" -gt 1 ] || exit 1
  40. exit 0