Considering the following verbatim:
\begin{verbatim}
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
\end{verbatim}
How to make sure that the verbatim text is not going out of the page, but going on the following line as soon as the width of the page has been passed?
Please note that I am looking for a solution without the listing package.
EDIT (to describe my problem a bit more)
I am having a long report in which I use a lot verbatim. From time to time, the text of the verbatim is going out of the page. Furthermore, I do use the listing package with box for some special programming code. I would like to keep the same verbatim format, but with auto "end of line" for the verbatim code. Is there a simple way for doing it?
EDIT 2
if you take the following verbatim with a very long string :
\begin{verbatim}
$ mylinuxcommand
!+.++++.....+++-+++-!^!^+............................................;+++-^^!--.........+++--!^!^+.++++.....+++-+++-^!^+............................................;+++-^^!--.........+++--!^!^+.++++.....+++-+++-!^!^+............................................;+++-^^!--.........+++--!^!^
$ myotherlinuxcommand
true
$ mylastcommand
"Thank you for your help"
\end{verbatim}
On your pdf, only a part of this string is displayed (It stays on the same line, it's "continuing" out of the page). As on below (pdf dislay) :
$ mylinuxcommand
!+.++++.....+++-+++-!^!^+............................................;+++-^^!-
$ myotherlinuxcommand
true
$ mylastcommand
"Thank you for your help"
I wish it could go on the next line automatically, so that all the content of this long string is displayed. The displayed result would give, on the pdf (pdf display):
$ mylinuxcommand
!+.++++.....+++-+++-!^!^+........................................
....;+++-^^!--.........+++--!^!^+.++++.....+++-+++-^!^+......
.....................................;+++-^^!--.........+++--
!^!^+.++++.....+++-+++-!^!^+.................................
...........;+++-^^!--.........+++--!^!^
$ myotherlinuxcommand
true
$ mylastcommand
"Thank you for your help"
So that the entire long string from the verbatim is displayed on the pdf. A long string should be automatically cut when it reaches the width of the page, and the rest recursivally displayed on the other line. Please note that this long string can change, but globally the structure and chars used remain the same.

verbatim, which is about representing “exactly” the input. Can you make a more realistic example? – egreg Oct 13 '13 at 10:05verbatimtext in a smaller size, for example\scriptsize, so that the wider lines fit onto the width of the page. Of course, you have to consistently do this for allverbatimtext throughout the document. – Steven B. Segletes Oct 13 '13 at 11:03\scriptsize, I need to have an end of line for some results I got, in my verbatim. – Martingal Oct 13 '13 at 11:21allttenvironment available with\usepackage{alltt}. Thelistingpackage allows for line breaks (optionbreaklinesto\lstset). – egreg Oct 13 '13 at 12:20listingspackage when actually you're using it already. Withlistingsit's easy to have different verbatim styles and it even allows to define separate environments for the different styles. – cgnieder Oct 13 '13 at 12:26listingsis simple:\begin{lstlisting}[basicstyle=\ttfamily, breaklines=true]and since you say you're already using the package... – cgnieder Oct 13 '13 at 13:44