Browse Source

Added find bash script for file extensions

- signed-off-by: James Ononiwu <jamesononiwu@gmail.com>
pull/393/head
James Ononiwu 1 year ago
parent
commit
188ca9ef3e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      README.md

+ 1
- 1
README.md View File

@@ -2154,7 +2154,7 @@ find / \( -perm -4000 -o -perm -2000 \) -type f -exec ls -la {} \;
find . -name "*.ext1" | while read i; do mv "$i" "${i%.ext1}.ext2"; done
```

###### Recursively find/replace link extension ext1 with ext2 in files with extension ext
###### Recursively find/replace links extension ext1 with ext2 in files with extension ext

```bash
find . -name '*.ext' -exec sed -i 's/\.ext1/\.ext2/g' "{}" \;


Loading…
Cancel
Save