find and replace google fonts
find files in folder which has “fonts.googleapis” recusively
1 |
find /usr/share/nginx/html/ -name "*" | xargs rgrep "fonts.googleapis" |
replace files in folder which has “fonts.googleapis” recusively
1 |
find /usr/share/nginx/html/ -name "*" | xargs perl -pi -e 's|fonts.googleapis|fonts.useso|g' |