packages/testsuite/test/11-profile-functions

8 lines
193 B
Bash
Executable file

#!/bin/sh
source /etc/profile.sh
for f in hook require alert confirm prompt console man infinite; do
echo -e "\r[⏵] shell function: $f"
type $f | grep -q function || exit 1
done
exit 0