瀏覽代碼

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 年之前
committed by GitHub
父節點
當前提交
b7e6974497
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 12 行新增0 行删除
  1. +12
    -0
      README.md

+ 12
- 0
README.md 查看文件

@@ -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))


Loading…
取消
儲存