Hey Guys, thanks for the suggestions.
Is there a way to print out a string, and in the terminal have it show any special characters (i.e. \n, \t, \s, etc...)
For Example: I have a variable like this:
#This variable is equal to the routers description which is a single s
+tring that when printed prints into 3 separate lines
my $descr = split " STRING: " `snmpget -v1 -c public 10.1.1.1 sysDescr
+.0`
print "$descr";
____OUTPUT____
Cisco IOS Software, Catalyst 4500 L3 Switch Software (cat4500-ENTSERVI
+CESK9-M), Version 12.2(31)SGA9, RELEASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2009 by Cisco Systems, Inc.
Compiled Mon 12-Jan-09 13:53
So is there a way to print out $sysDescr and have it actually print the special character symbols...? I want to see what meta-characters are actually in there.
Something like this:
Cisco IOS Software, Catalyst 4500 L3 Switch Software (cat4500-ENTSERVI
+CESK9-M), Version 12.2(31)SGA9, RELEASE SOFTWARE (fc1)\n
Technical Support: http://www.cisco.com/techsupport\n
Copyright (c) 1986-2009 by Cisco Systems, Inc.\n
Compiled Mon 12-Jan-09 13:53\n
Any thoughts would be great.
Thanks,
Matt
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.