Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lagleki/memo
https://github.com/lagleki/memo
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lagleki/memo
- Owner: lagleki
- Created: 2016-04-23T05:41:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-23T07:10:08.000Z (over 8 years ago)
- Last Synced: 2024-10-31T13:46:10.238Z (2 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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' {} +
```