The file is initially
$cat so/app.yaml
application: SO
...
I run the following command. I get an empty file.
$sed s/SO/so/ so/app.yaml > so/app.yaml
$cat so/app.yaml
$
How can you use SED to edit the file and not giving me an empty file?
|
The file is initially
I run the following command. I get an empty file.
How can you use SED to edit the file and not giving me an empty file? |
|||
|
|
The |
|||||||||||
|
|
The Sheldon Young's answer shows how to use in-place editing. |
|||||
|
|
You are using the wrong tool for the job.
So, your And, again because This is how it looks in its entirety:
See also my answer to a similar question. What happens in your case, is that executing a pipeline is a two-stage process: first construct the pipeline, then run it. Some versions of |
|||||||||
|
|
I believe that redirecting output into the same file you are editing is causing your problem. You need redirect standard output to some temporary file and when sed is done overwrite the original file by the temporary one. |
||||