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