-
Notifications
You must be signed in to change notification settings - Fork 33
Home
mahmudahsan edited this page Oct 28, 2012
·
3 revisions
Welcome to the 203-ACM-Problems-Code wiki!
How to download all the problems from ACM Site?
YNH Webdev created the following script to download all the problems that I solved. So just run the script to get the problems. You need to run the script from the same folder where you stored all the .cpp solutions.
for f in *.cpp do wget `echo $f | sed 's/\(.*\)\(.\{2\}\)\.cpp/http:\/\/uva.onlinejudge.org\/external\/\1\/\1\2.html/'` done