浏览代码

Merge 188ca9ef3e into 9280d0e7ea

pull/393/merge
James Ononiwu 3 个月前
committed by GitHub
父节点
当前提交
68cc713b79
找不到此签名对应的密钥 GPG 密钥 ID: B5690EEEBB952194
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. +12
    -0
      README.md

+ 12
- 0
README.md 查看文件

@@ -2164,6 +2164,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 links extension ext1 with ext2 in files with extension ext

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

___

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


正在加载...
取消
保存