10 lines
229 B
Markdown
10 lines
229 B
Markdown
## Rename File extension
|
|
```bash
|
|
find /the/path -depth -name "*.js" -exec sh -c 'mv "$1" "${1%.js}.ts"' _ {} \;
|
|
```
|
|
|
|
## Find / Remove & Exclude
|
|
```bash
|
|
find . -name '*conflict*' -not -path "*node_modules*" -exec rm -rf {} \;
|
|
```
|