in reply to Re^2: Changing parameters
in thread Changing parameters
That will override the old values.echo '$i = 987;' >> parameter.ph
If you do this often, and do not want the file to grow every time, save the original file and output to a new one.
cp defaults.ph parameter.ph; echo '$i = 987;' >> parameter.ph
|
|---|