notes/song getter for My Free Mp3-5tqQQ82s.sh
#wget list

$(".info").each(function(){
	var title=$(this).html();
	var id=$(this).attr('data-aid'); 
	var url="http://s.myfreemp3.biz/p.php?q="+id; 
	var output="wget '<a href='"+url+"'>" + url + "' -O '" + title + "</a>'";
	$("body").append(output+"<br>")
})

#just urls

$(".info").each(function(){
	var title=$(this).html();
	var id=$(this).attr('data-aid'); 
	var url="http://s.myfreemp3.biz/p.php?q="+id; 
	var output="<a href='"+url+"'>" + url + "</a>";
	$("body").append(output+"<br>")
})

syntax highlighted by Code2HTML, v. 0.9.1