/usr/lib/debian-edu-config/testsuite/dash is in debian-edu-config 1.818+deb8u2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh -e
#
# Test if /bin/sh is dash or bash
current=`ls -l /bin/sh | rev | cut -d" " -f1-3 | rev`
if [ "/bin/sh -> dash" = "$current" ] ; then
echo "success: $0: /bin/sh is dash"
else
echo "error: $0: incorrect link: $current"
fi
|