Skip to content

Instantly share code, notes, and snippets.

@petr999
Last active March 28, 2021 10:09
Show Gist options
  • Save petr999/588548c94a24a3f8ce71dd60da291068 to your computer and use it in GitHub Desktop.
Save petr999/588548c94a24a3f8ce71dd60da291068 to your computer and use it in GitHub Desktop.
400+ hackerrank's tasks solutions download
#!/bin/sh
#
# ABSTRACT: use 'ls | grep' to find your particular hackerrank's task solution)
### MAIN ###
#
# URLs found in curl(1) output can be used as a reference to seek for a particular task to solve as files' names are quite descriptive
curl 'https://www.blogger.com/feeds/8068649101764775888/posts/default?max-results=500' \
| perl -Mstrict -nwE 'say join "\n" => m{href='"'"'(https://programs.programmingoneonone.com[^'"'"']*\.html)'"'"'}g;' \
| wget -i -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment