把所有以lib结尾的文件名改以a结尾
#!/bin/sh for file in `find -name "*.lib"` do mv $file `echo $file | sed 's/lib$/a/g'` done