#!/bin/bash cd /home/downloads/Converted/ for f in *;do rsync -auvzH $f /home/audio/ogg/$(echo $f | sed 's/.oggvorbis//') && rm $f; done