Joel Serrano
2022-Aug-03 15:35 UTC
[asterisk-users] Run asterisk -rx "command" and get plain text output
Have you tried adding “-n”? Also, what version of asterisk are you using? newer versions only have colorized output when your are connected to the console (-r) not for remote commands (-rx) On Wed, Aug 3, 2022 at 08:21 Carlos Chavez <cursor at telecomab.mx> wrote:> I usually like to have the colorized output when looking at > asterisk output but I need to get some info by running "asterisk -rx" > and get just plain text output so I can mail it. Right now I get ANSI > codes in the output. Is there a way to get plain text output for just > that script and not disable colors for everything? > > -- > Telecomunicaciones Abiertas de México S.A. de C.V. > Carlos Chávez > +52 (55)8116-9161 > > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > Check out the new Asterisk community forum at: > https://community.asterisk.org/ > > New to Asterisk? Start here: > https://wiki.asterisk.org/wiki/display/AST/Getting+Started > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20220803/6a87992a/attachment.html>
Stacy Olivas
2022-Aug-03 18:55 UTC
[asterisk-users] Run asterisk -rx "command" and get plain text output
Try adding in the asterisk.conf file: [options] nocolor=yes -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20220803/d7380c7f/attachment.html>
Carlos Chavez
2022-Aug-03 23:12 UTC
[asterisk-users] Run asterisk -rx "command" and get plain text output
The "-n" option only works on startup and cannot be used when Asterisk is already running (I tried and I get an error). We are using version 18.12.1. The output I want to capture is: asterisk -rx "queue show" If I capture the output to a file or straight to the command line I get the colorized output. I found a way to strip the ANSI codes using SED: asterisk -rx "queue show" | sed -e 's/\x1b\[[0-9;]*m//g' On 8/3/2022 10:35 AM, Joel Serrano wrote:> Have you tried adding “-n”? > > Also, what version of asterisk are you using? newer versions only have > colorized output when your are connected to the console (-r) not for > remote commands (-rx) > > > > On Wed, Aug 3, 2022 at 08:21 Carlos Chavez <cursor at telecomab.mx> wrote: > > I usually like to have the colorized output when looking at > asterisk output but I need to get some info by running "asterisk -rx" > and get just plain text output so I can mail it. Right now I get > ANSI > codes in the output. Is there a way to get plain text output for > just > that script and not disable colors for everything? > > -- > Telecomunicaciones Abiertas de México S.A. de C.V. > Carlos Chávez > +52 (55)8116-9161 > > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > Check out the new Asterisk community forum at: > https://community.asterisk.org/ > > New to Asterisk? Start here: > https://wiki.asterisk.org/wiki/display/AST/Getting+Started > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >-- Telecomunicaciones Abiertas de México S.A. de C.V. Carlos Chávez +52 (55)8116-9161 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20220803/2923c17c/attachment.html>