diff --git a/tldr/ifconfig b/tldr/ifconfig index e29b66ab..a335b481 100644 --- a/tldr/ifconfig +++ b/tldr/ifconfig @@ -8,22 +8,22 @@ source: https://github.com/tldr-pages/tldr.git > Network Interface Configurator. > More information: . -- View network settings of an Ethernet adapter: +- View network settings of an interface: -`ifconfig eth0` +`ifconfig {{interface_name}}` - Display details of all interfaces, including disabled interfaces: `ifconfig -a` -- Disable eth0 interface: +- Disable an interface: -`ifconfig eth0 down` +`ifconfig {{interface_name}} down` -- Enable eth0 interface: +- Enable an interface: -`ifconfig eth0 up` +`ifconfig {{interface_name}} up` -- Assign IP address to eth0 interface: +- Assign an IP address to an interface: -`ifconfig eth0 {{ip_address}}` +`ifconfig {{interface_name}} {{ip_address}}` diff --git a/tldr/wireplumber b/tldr/wireplumber index dda0fd12..8913ad00 100644 --- a/tldr/wireplumber +++ b/tldr/wireplumber @@ -27,4 +27,4 @@ source: https://github.com/tldr-pages/tldr.git - Display version: -`wirepumbler --version` +`wireplumber --version`