#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>")
})