Horje
linux replace string in files recursively Code Example
linux replace string in files recursively
find . -type f -name "*.txt" -exec sed -i'' -e 's/foo/bar/g' {} +
linux replace string in all files
sed -i 's/old-text/new-text/g' input.txt
linux replace string in files recursively
find /home/www \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/subdomainA\.example\.com/subdomainB.example.com/g'




Shell

Related
install traceroute ubuntu 18.04 Code Example install traceroute ubuntu 18.04 Code Example
obs for ubuntu Code Example obs for ubuntu Code Example
how to get the temp of cpu in linux terminal raspberry pi Code Example how to get the temp of cpu in linux terminal raspberry pi Code Example
how to remove terminator from ubuntu Code Example how to remove terminator from ubuntu Code Example
sudo: traceroute: command not found Code Example sudo: traceroute: command not found Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
19