bash:strings:find_replace
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:strings:find_replace [2021/01/13 21:58] – created peter | bash:strings:find_replace [2021/02/10 16:04] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== BASH - Strings - Find & Replace ====== | ====== BASH - Strings - Find & Replace ====== | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | |||
+ | echo ${var/ | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | fgcdabe | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | To change all occurrences use: | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | |||
+ | echo ${var// | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | fgcdfge | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Changing contents within a file ===== | ||
+ | |||
+ | <code bash> | ||
+ | contents=$(< | ||
+ | $ echo " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * **infile.txt**: | ||
+ | * **$old**: | ||
+ | * **$new**: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | To change the file in-place: | ||
+ | |||
+ | <code bash> | ||
+ | echo " | ||
+ | </ | ||
bash/strings/find_replace.1610575104.txt.gz · Last modified: 2021/01/13 21:58 by peter