Im trying to rename all .avi files recursively which start with "." to not starting with a dot. So
.04-03-29_15-00.00.avi .04-03-31_17-54.00.avi
.04-03-25_00-09.00.avi .04-03-25_20-28.00.avi
should become
04-03-29_15-00.00.avi 04-03-31_17-54.00.avi
04-03-25_00-09.00.avi 04-03-25_20-28.00.avi
Im experimenting with this commmand, but i cant get it working, the error ist rename: not enough arguments
find . -name "*.avi" -exec rename -n 's/^\.*/\/i' *avi {} \;