Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lagleki/memo


https://github.com/lagleki/memo

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

        

## change remote

git remote set-url

## replace recusrsively in all files

```
find /home/www -type f -print0 | xargs -0 sed -i 's/subdomainA.example.com/subdomainB.example.com/g'
```
```
find . -type f \( -iname \*.css -o -iname \*.js -o -iname \*.json \) -not \( -path './.git/*' -o -path './node_modules/*' \) \
-exec sed -i 'Statinamic/Phenomic/g' {} +
find . -type f \( -iname \*.css -o -iname \*.js -o -iname \*.json \) -not \( -path './.git/*' -o -path './node_modules/*' \) \
-exec sed -i 'statinamic/phenomic/g' {} +
find . -type f \( -iname \*.css -o -iname \*.js -o -iname \*.json \) -not \( -path './.git/*' -o -path './node_modules/*' \) \
-exec sed -i 'STATINAMIC/PHENOMIC/g' {} +
```