Trying to change values in a text file using sed in a bash script with the line,
sed 's/draw($prev_number;n_)/draw($number;n_)/g' file.txt > tmp
This will be in a for loop. Not sure why it's not working. Any suggestions?
|
Trying to change values in a text file using sed in a bash script with the line,
This will be in a for loop. Not sure why it's not working. Any suggestions? |
|||
|
|
|
Variables inside
Also, unless you need it in a different file you can use the |
|||
|
|
|
variables within single quotes are not expanded, within double quotes they are, use double quotes in this case.
You could also make it work with |
|||
|