Skip to content

Instantly share code, notes, and snippets.

@gmoraiz
Created May 17, 2019 12:40
Show Gist options
  • Save gmoraiz/3c9578888360caac16de310687f009a2 to your computer and use it in GitHub Desktop.
Save gmoraiz/3c9578888360caac16de310687f009a2 to your computer and use it in GitHub Desktop.
Para auxiliar na montagem de todos os projetos.
//iterar cada página gerada pela paginação do git
document.querySelectorAll("[itemprop='name codeRepository']").forEach(x => {
let projeto = x.innerText.split('-');
if(projeto[0] == 'mobile'){
if(typeof projectsName === 'undefined') projectsName = [];
projectsName.push(projeto[1])
}
})
//gerar um array bash script com os dados recolhidos.
projectsName.reduce((e, i) =>{
return e+= `"${i.trim()}" `;
}, `declare -a projetos=(`) + ')'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment