cm0002@lemmy.world to linuxmemes@lemmy.world · 4 months agoPosting for a friend lollemmy.worldimagemessage-square23fedilinkarrow-up117arrow-down10
arrow-up117arrow-down1imagePosting for a friend lollemmy.worldcm0002@lemmy.world to linuxmemes@lemmy.world · 4 months agomessage-square23fedilink
minus-squaretal@lemmy.todaylinkfedilinkEnglisharrow-up0·edit-24 months agoapt is newer and mostly supersedes apt-get/apt-cache/etc tools, tries to be a more-approachable frontend. They interoperate though, so if you’re happy with using a mix of them, go for it. I generally just use apt. EDIT: There were also some older attempts to produce a unified frontend, like aptitude.
minus-squaredan@upvote.aulinkfedilinkarrow-up1·edit-24 months ago mostly supersedes apt-get/apt-cache/etc tools, Except for in scripts. Debian guarantee that the output format of apt-get will never change and thus it’s safe to use in scripts that parse the output, whereas they don’t have the same guarantee for apt, which can change between releases.
apt
is newer and mostly supersedes apt-get/apt-cache/etc tools, tries to be a more-approachable frontend.They interoperate though, so if you’re happy with using a mix of them, go for it. I generally just use
apt
.EDIT: There were also some older attempts to produce a unified frontend, like
aptitude
.Except for in scripts. Debian guarantee that the output format of
apt-get
will never change and thus it’s safe to use in scripts that parse the output, whereas they don’t have the same guarantee forapt
, which can change between releases.