Hi,
Is there anyway to use variable in the following case?
The file is not able to update.
perl -pi -e 's/${seq_detail}/${new_seq}/g' ${SEQ_FILE}
alternatif, i try to use sed, but still the file is not updated.
sed -n -e 's/${seq_detail}/${new_seq}/g' ${SEQ_FILE}
Can anyone help to correct my statement above?
Thanks.
Is there anyway to use variable in the following case?
The file is not able to update.
perl -pi -e 's/${seq_detail}/${new_seq}/g' ${SEQ_FILE}
alternatif, i try to use sed, but still the file is not updated.
sed -n -e 's/${seq_detail}/${new_seq}/g' ${SEQ_FILE}
Can anyone help to correct my statement above?
Thanks.