unixwhoopie
Programmer
I am trying to understand sed but this seems to be very confusing to me. What is the best way to learn sed?
I am trying to debug a program and not sure what the following lines of code mean -
export ARGS=`echo $line | sed 's/,/" "/g'`
ARGS=`echo $ARGS | sed 's/^/"/'`
ARGS=`echo $ARGS | sed 's/$/"/'`
Thanks for the help
I am trying to debug a program and not sure what the following lines of code mean -
export ARGS=`echo $line | sed 's/,/" "/g'`
ARGS=`echo $ARGS | sed 's/^/"/'`
ARGS=`echo $ARGS | sed 's/$/"/'`
Thanks for the help