We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 754e2a4 commit 27c70e0Copy full SHA for 27c70e0
allocate2.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+echo “begin allocating memory...”
4
+for index in $(seq 1000); do
5
+ value=$(seq -w -s ‘’ $index $(($index + 1024000000)))
6
+ eval array$index=$value
7
+ free -m
8
+done
9
+echo “...end allocating memory”
0 commit comments