Skip to content

Instantly share code, notes, and snippets.

@userddssilva
Last active February 3, 2021 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save userddssilva/cbf17c3173aa41afcc2ec2294a0807fc to your computer and use it in GitHub Desktop.
Save userddssilva/cbf17c3173aa41afcc2ec2294a0807fc to your computer and use it in GitHub Desktop.
Send files .md to github gist of a folder
for file in `ls *.md`
do
echo "Sending file: "
echo $file
putgist userddssilva $file
sleep 5
echo "Done"
echo ""
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment