notes/Resources/dev/snippets/bash.md
2023-05-04 13:46:51 +00:00

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 {} \;
```