Sfoglia il codice sorgente

Added find bash script for file extensions

script finds and replaces file extensions and also replaces link extensions in files with a particular extension
pull/393/head
James Ononiwu 1 anno fa
committed by GitHub
parent
commit
b7e6974497
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. +12
    -0
      README.md

+ 12
- 0
README.md Vedi File

@@ -2148,6 +2148,18 @@ find . -depth -name '*test*' -execdir bash -c 'mv -v "$1" "${1//foo/bar}"' _ {}
find / \( -perm -4000 -o -perm -2000 \) -type f -exec ls -la {} \;
```

###### Recursively find/replace files extension ext1 with ext2

```bash
find . -name "*.ext1" | while read i; do mv "$i" "${i%.ext1}.ext2"; done
```

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

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

___

##### Tool: [top](https://en.wikipedia.org/wiki/Top_(software))


Caricamento…
Annulla
Salva