apt is a newer, more user-friendly front-end for apt-get and apt-cache.
apt = combines commands like install, remove, update, upgrade into one tool, with prettier output
#apt-get = older, lower-level, more script-friendly
For normal use, just use apt now.
For scripting where 100% backward compatibility matters, use apt-get.
apt is a newer, more user-friendly front-end for apt-get and apt-cache.
apt = combines commands like install, remove, update, upgrade into one tool, with prettier output
#apt-get = older, lower-level, more script-friendly For normal use, just use apt now. For scripting where 100% backward compatibility matters, use apt-get.
TIL apt isn’t literally the same thing as apt-get
I didn’t even realize I thought this, but reading your comment I definitely did.
But apt-get also has install, remove, update and upgrade…
Yes, but
apt-get
is missingsearch
for instance, because that relates to the cache, soapt-cache
provides it.apt
combines all those often used commands, and provides a nicer shell presentation.This should be top comment.