> On 18/10/2016, at 2:31 am, Jonathan H <[email protected]> wrote: > > I have a plain text file, ASCII, unix line breaks. 1 single line, and all > that is in it is the word "radio". > > <snip>
Heya Jonathan
Interesting problem!
Unfortunately I can't help with suitable dialplan code to resolve your issue,
but I thought I'd at least throw this snippet out to you:
If you want to know what is _really_ in that file (including all invisible
characters and anything else that wc etc might not count), pipe it through
'hexdump'. Then you get to see the raw contents of the file in hex and can
compare it to other files or the output you get from other tools (and you can
look up the ASCII char codes for invisible chars to explore what they are etc).
Eg:
cat /home/test/feature-1.txt | hexdump
Hope this tool helps you in your quest :)
Pete
smime.p7s
Description: S/MIME cryptographic signature
-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016 http://www.asterisk.org/community/astricon-user-conference 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
