Files
fish-shell/share/completions/networkctl.fish
2025-08-17 20:17:00 -07:00

56 lines
3.8 KiB
Fish

# Completions for networkctl (a part of systemd)
set -l command_with_devices list status lldp delete up down renew forcerenew reconfigure
set -l command_with_config_devices edit cat
set -l command_with_config_files mask unmask $command_with_config_devices
set -l commands label reload $command_with_devices $command_with_config_files
set -l devices "(networkctl list --no-legend 2>/dev/null | string trim | string split -f 2 -- ' ')"
set -l config_devices "(networkctl list --no-legend 2>/dev/null | string trim | string split -f 2 -- ' ' | string replace -r -- '^' '@')"
function __fish_complete_networkctl_files
set -l dirs /etc/systemd/network /run/systemd/network /usr/local/lib/systemd/network /usr/lib/systemd/network
set -l exts link netdev network
for dir in $dirs
for ext in $exts
path basename $dir/*.$ext
end
end
end
# Commands
complete -c networkctl -f
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a list -d "List links"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a status -d "Show link status"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a lldp -d "Show LLDP neighbors"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a label -d "Show current address label"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a delete -d "Delete virtual netdevs"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a up -d "Bring devices up"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a down -d "Bring devices down"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a renew -d "Renew dynamic configurations"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a forcerenew -d "Trigger DHCP reconfiguration of all connected clients"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a reconfigure -d "Reconfigure interfaces"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a reload -d "Reload .network and .netdev files"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a edit -d "Edit network configuration files"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a cat -d "Show network configuration files"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a mask -d "Mask network configuration files"
complete -c networkctl -n "not __fish_seen_subcommand_from $commands" -a unmask -d "Unmask network configuration files"
complete -c networkctl -n "__fish_seen_subcommand_from $command_with_devices" -a "$devices"
complete -c networkctl -n "__fish_seen_subcommand_from $command_with_config_files" -xa "(__fish_complete_networkctl_files) $config_devices"
# Options
complete -c networkctl -s h -l help -d "Show help"
complete -c networkctl -l version -d "Show version"
complete -c networkctl -l no-pager -d "Do not pipe output into a pager"
complete -c networkctl -l no-legend -d "Do not show the headers and footers"
complete -c networkctl -l no-ask-password -d "Do no prompt for password"
complete -c networkctl -s a -l all -d "Show status for all links"
complete -c networkctl -s s -l stats -d "Show detailed link statics"
complete -c networkctl -s l -l full -d "Do not ellipsize output"
complete -c networkctl -s n -l lines -d "Number of journal entries to show" -xa "(seq 1 10)"
complete -c networkctl -l json -d "Generate JSON output" -xa "pretty short off"
complete -c networkctl -l no-reload -d "Do not reload systemd-networkd or systemd-udevd"
complete -c networkctl -l drop-in -d "Edit specified drop-in instead of main file" -x
complete -c networkctl -l runtime -d "Edit runtime config file"
complete -c networkctl -l stdin -d "Read new contents of edited file from stdin"