<div dir="ltr">Just would like to consult the hive mind. I want to read the contents of a multi-line text file to be used by my OpenSIPS config. Ideally, I'll get a key:value CSV pair from the file and store each pair in memcache - e.g.<div><br></div><div>file contains:</div><div><br></div><div>a, 113</div><div>b, 214</div><div>c, 771</div><div><br></div><div>read it in line by line and cache_store() with the letter as the attribute and the number as the value.</div><div><br></div><div>I was thinking that I could use exec() to 'cat' the contents of the file, storing stdout in an AVP, and then work through that array splitting letter and number with a string transformation ready for cache_store(). However, if I do this the full file contents are stored as a single string in the first value with "#012" added in place of the new lines. </div><div><br></div><div>Obviously, I can use a string transform s.select{} using #012 as a delimiter in an intermediary step, but am I just doing this the hard way? Is there a better way to achieve this?</div></div>