blob: 6b9336ede1ee00b76d6867d1f5940e6855955f64 [file] [log] [blame]
#!@BASH@
if [[ $# -gt 0 ]]; then
echo 'nfd-status command line options are deprecated.' >&2
echo 'Use the `nfdc` subcommands instead. See `nfdc help` for details.' >&2
exec "$(dirname "$0")/nfdc" legacy-nfd-status "$@"
else
# nfd-status is an alias of `nfdc status report`
exec "$(dirname "$0")/nfdc" status report
fi