Get all IPs from host


Ubuntu 16.x
ifconfig | grep inet |awk '{print $2}'


Ubuntu 18.x
ifconfig | grep inet |awk '{print $3}'

Apt only upgrade selected packages

 apt list --upgradable | cut -d"/" -f1 > /tmp/apt pico /tmp/apt cat /tmp/apt | tr "\n" " " apt install --on...

Mais vistos