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
Next revision
Previous revision
bash:strings:find_replace [2021/01/13 22:02] peterbash:strings:find_replace [2021/02/10 16:04] (current) peter
Line 31: Line 31:
  
 </WRAP> </WRAP>
 +
 +----
 +
 +===== 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.1610575369.txt.gz · Last modified: 2021/01/13 22:02 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki