Last active
February 3, 2021 13:23
-
-
Save userddssilva/cbf17c3173aa41afcc2ec2294a0807fc to your computer and use it in GitHub Desktop.
Send files .md to github gist of a folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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