in reply to Re^2: Matching array elements against file
in thread Matching array elements against file
This seems to be yet another problem with your description.
Perhaps 'server=' would be better as 'servers='. You could then split its value on '/,\s*/' and then treat these 3 elements:
'server=bar116aix,bar117aix:FS=/tmp', 'server=cvmfsser1, cvmfsser2:FS=/opt/apps', 'server=baraix665, baraix666, baraix667:FS=/data/hp/feeds',
as if they were these 7 elements:
'server=bar116aix:FS=/tmp', 'server=bar117aix:FS=/tmp', 'server=cvmfsser1:FS=/opt/apps', 'server=cvmfsser2:FS=/opt/apps', 'server=baraix665:FS=/data/hp/feeds', 'server=baraix666:FS=/data/hp/feeds', 'server=baraix667:FS=/data/hp/feeds',
Here I'm making further assumptions:
-- Ken
|
|---|