blob: 50f49213440d8e2057ab2c512026585122dc109c [file] [log] [blame]
#!/bin/sh
if [[ $# -eq 0 ]] || [[ ! -f /Applications/NDN.app/Contents/Platform/"$1" ]] ; then
echo ERROR: No command or invalid command is specified
echo
echo Available commands:
for command in $(ls /Applications/NDN.app/Contents/Platform/ 2>/dev/null); do
echo " $command"
done
exit 1
fi
/Applications/NDN.app/Contents/Platform/"$@"