Skip to content

feat(ip): Complete link afstats command #1167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion completions/ip
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ _comp_cmd_ip()
add)
# TODO
;;
afstats)
if [[ $prev == dev ]]; then
_comp_compgen_available_interfaces
else
_comp_compgen -- -W 'dev'
fi
;;
delete)
if [[ $prev == type ]]; then
_comp_cmd_ip__link_types "$1"
Expand Down Expand Up @@ -173,7 +180,7 @@ _comp_cmd_ip()
;;
*)
((cword == subcword)) &&
_comp_compgen -- -W 'help add delete set show property'
_comp_compgen -- -W 'help add delete set show property afstats'
;;
esac
;;
Expand Down