#!/bin/bash

echo reanme all files with uncerscore to use dashes
ls | while read -r FILE
do
    mv -v "$FILE" `echo $FILE | tr '_' '-' `
done



