修改当前目录下全部文件扩展名

#!/bin/bash
for i in `ls`
    do
        mv $i ${i%%.*}.php
    done
相关文章
相关标签/搜索