Last active
July 17, 2020 04:13
-
-
Save R4wm/34fef6cc1cc072ff931f53398f1afccf to your computer and use it in GitHub Desktop.
how many vs in Old and New Testament?
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
| sqlite> select count(*) from kjv where testament="OLD"; | |
| count(*) | |
| ---------- | |
| 23145 | |
| sqlite> select count(*) from kjv where testament="NEW"; | |
| count(*) | |
| ---------- | |
| 7957 | |
| sqlite> | |
| @~:$ echo $((7957 + 23145)) # Total verses in the bible | |
| 31102 | |
| @~:$ echo $((7957/365)) # New testament per day | |
| 21 | |
| @~:$ echo $((23145/365)) # Old testament per day | |
| 63 | |
| @~:$ echo $(((23145/365) + (7957/365))) # total verses per day | |
| 84 | |
| @~:$ echo $((((23145/365) + (7957/365)) / 3)) # 3 meals a day | |
| 28 | |
| voidconf@~:$ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment