diff --git a/module/common/bash/module/Network.sh b/module/common/bash/module/Network.sh index 08e63d5..bee98b8 100644 --- a/module/common/bash/module/Network.sh +++ b/module/common/bash/module/Network.sh @@ -9,19 +9,19 @@ function network() { } # Show active connections. -function ns() { +function nms() { nmcli connection show } # Start the connection. # Usage: nu -function nu() { +function nmu() { nmcli connection up "${@}" } # Stop the connection. # Usage: nd -function nd() { +function nmd() { nmcli connection down "${@}" } @@ -29,4 +29,4 @@ function _complete_connections() { _autocomplete $(nmcli connection show | sed "1d" | cut -d\ -f1) } -complete -F _complete_connections nd nu +complete -F _complete_connections nmd nmu