https://github.com/huruji/Shell
自己写的Shell工具
https://github.com/huruji/Shell
Last synced: about 2 months ago
JSON representation
自己写的Shell工具
- Host: GitHub
- URL: https://github.com/huruji/Shell
- Owner: huruji
- Created: 2018-01-14T18:22:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-25T10:47:14.000Z (over 7 years ago)
- Last Synced: 2025-04-19T23:03:23.439Z (2 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-star - Shell
README
# Shell
自己写的Shell工具## reNamer
> 为一个文件夹的所有文件批量命名### 使用方法:
```shell
reNamer [-f folder] [-e extention] [-p pattern] [-a]
```### 选项参数:
> -f:文件夹名
>
> -e:过滤的文件拓展名
>
> -p:命名的格式
>
> -a:是否包含文件夹
>### 例子:
> 为photo文件夹下的所有png文件命名,命令格式为photo-...(...代表自增的数字)```shell
reNamer -f photo -e png -p photo-...
```