why n option is not working here
[root@testgfs2 final]# echo a b c | sed -ne 's/[[:blank:]]/"/gp' -ne 's/^/"/pg' -ne 's/$/"/pg'
a"b"c
"a"b"c
"a"b"c"
i just need :
"a"b"c"
actually i want sed to do somehting like :
echo a b c d | sed ...
output:
'a' 'b' 'c' 'd'