How can I comment on each line of the following lines from a script?
cat ${MYSQLDUMP} |
sed '1d' |
tr ",;" "
" |
sed -e 's/[asbi]:[0-9]*[:]*//g' -e '/^[{}]/d' -e 's/""//g' -e '/^"{/d' |
sed -n -e '/^"/p' -e '/^print_value$/,/^option_id$/p' |
sed -e '/^option_id/d' -e '/^print_value/d' -e 's/^"(.*)"$/1/' |
tr "
" "," |
sed -e 's/,([0-9]*-[0-9]*-[0-9]*)/
1/g' -e 's/,$//' |
sed -e 's/^/"/g' -e 's/$/"/g' -e 's/,/","/g' >> ${CSV}
If I try and add a comment like:
cat ${MYSQLDUMP} | # Output MYSQLDUMP File
I get:
#: not found
Is it possible to comment here?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…