8 lines
209 B
Markdown
8 lines
209 B
Markdown
***IP address on host promts (add to /etc/issue)***
|
|
```
|
|
<ifName>: \4{<ifName>}
|
|
```
|
|
***IP address on motd (add to .bashrc)***
|
|
```
|
|
echo "IP: $(ip -o -4 addr list "<IFNAME>" | awk '{print $4}' | cut -d/ -f1)"
|
|
``` |