When sudo apt-get install -y blender
redirects to /dev/null
, the installing process completed without any warnings or errors.
But when sudo apt install -y blender
redirects to /dev/null
, this warning is shown :
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
So what's difference between apt-get
and apt
commands that cause this warning ?
I know that it's better to use apt
instead of apt-get
, but how to redirect the apt
output without this warning ?
Is there another way to make apt less noisy ? (beacause -q
and -qq
options are not silently as they be should)
apt
thenapt-get
? – Nacht Mar 27 '17 at 22:50apt
developers want you to use it interactively, but go useapt-get
in your scripts. – Jonathan Cast Apr 02 '17 at 03:25