packages/testsuite/test/11-profile-functions

9 lines
193 B
Text
Raw Permalink Normal View History

2025-06-20 12:34:13 +02:00
#!/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