Created
May 5, 2020 04:07
-
-
Save dhakalsuresh/20b50572b5e3b25f14a84aec9a0df64b to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
limit=2000 | |
for i in {0..20} | |
do | |
offset=`expr $i \* $limit` | |
echo "/$offset/$limit" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment