On 2/13/2014 2:44 AM, Marius Liebenberg wrote:
> Charles
> I made the changes to the scripts as you suggested but I not able to ad 
> the comment after the file name entry. It seems like the script does not 
> read it into the JUNK variable.
> Sorry to bug you with this but I am not well versed with the scripting 
> stuff.

Sorry...I overlooked that you're clearing IFS.  Remove that and read
will split tokens on the input as expected:

>> while IFS= read -r name JUNK <&3;
>> do

while read -r name JUNK <&3;
do

-- 
Charles Steinkuehler
char...@steinkuehler.net

Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
Android apps run on BlackBerry 10
Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
Now with support for Jelly Bean, Bluetooth, Mapview and more.
Get your Android app in front of a whole new audience.  Start now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk
_______________________________________________
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to