I need to correct some Linux commands in Latex, I'm currently using the minted library because for me is the better looking one but I can't manage to make too long command break into two parts.
For example:
\documentclass[12pt,english, openany, oneside,a4paper]{article}
\usepackage[utf8]{inputenc}
% Paquetes utilizados en el documento
\usepackage[spanish]{babel}
\usepackage{minted}
\title{}
\author{}
\date{}
\begin{document}
\maketitle
\noindent
Instalar todas las dependencias necesarias de Home Assistance Superviced
\begin{minted}{bash}
$ apt-get update && apt-get upgrade && apt-get install jq wget curl avahi-daemon udisks2 libglib2.0-bin network-manager dbus apparmor -y
\end{minted}
\end{document}
This code shows the command like this:
Is there someway to make it all fit by breaking it into more lines? I appreciate the help.


\begin{minted}{bash}with\begin{minted}[breaklines]{bash}. – hair-splitter Mar 08 '22 at 18:31&&,||,&,|– glenn jackman Mar 08 '22 at 22:35