User Tools

Site Tools


bash:strings:find_replace

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
bash:strings:find_replace [2021/02/10 15:59] peterbash:strings:find_replace [2021/02/10 16:04] (current) peter
Line 34: Line 34:
 ---- ----
  
 +===== Changing contents within a file =====
 +
 +<code bash>
 +contents=$(< infile.txt)
 +$ echo "${contents/$old/$new}"
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  This reads the file into a Bash variable and uses parameter expansion.
 +
 +  * **infile.txt**:  The input file here is named **infile.txt**.
 +  * **$old**:  The string to replace.
 +  * **$new**:  The replacement string.
 +</WRAP>
 +
 +----
 +
 +To change the file in-place:
 +
 +<code bash>
 +echo "${contents/$old/$new}" > infile.tmp && mv infile.tmp infile.txt
 +</code>
  
bash/strings/find_replace.1612972756.txt.gz · Last modified: 2021/02/10 15:59 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki