blob: 6b9336ede1ee00b76d6867d1f5940e6855955f64 [file] [log] [blame]
Junxiao Shi331ade72016-08-19 14:07:19 +00001#!@BASH@
Junxiao Shi934f5052016-11-28 16:13:21 +00002if [[ $# -gt 0 ]]; then
3 echo 'nfd-status command line options are deprecated.' >&2
4 echo 'Use the `nfdc` subcommands instead. See `nfdc help` for details.' >&2
5 exec "$(dirname "$0")/nfdc" legacy-nfd-status "$@"
6else
7 # nfd-status is an alias of `nfdc status report`
8 exec "$(dirname "$0")/nfdc" status report
9fi