Created
March 21, 2024 11:55
-
-
Save SGINJ/dd5fbb744b7e2e5adc7928826958d94c to your computer and use it in GitHub Desktop.
foo.sh
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
| #!/bin/ash | |
| echo "begin allocating memory..." | |
| for index in $(seq 1000); do | |
| value=$(seq -w -s '' $index $(($index + 100000000))) | |
| eval array$index=$value | |
| done | |
| echo "...end allocating memory" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment