I am trying to write a bash shell script that consumes a high amount of RAM on an embedded device for a user defined time. How do I do it without using arrays ?
|
|
Even if traditional Bash arrays are not supported, it may still be possible to create array-like variables using the The following example script is based on some scripting I did when using BusyBox in an embedded Linux project. BusyBox uses the Almquist shell (also known as A Shell, ash, and sh), which does not support arrays.
Be careful with quoting when using Output:
Depending on your particular scenario, a script similar to the following may suffice.
In my brief testing, this script consumed ~570M to ~575M physical memory* for the specified time period of 5 minutes. * Monitored using top and memprof programs in separate tests |
||||
|
Personally I would go with Nick's answer, since doing it in C is going to be much easier really. But... if you really want to avoid writing a super-simple C program to do it, then (if the system is running Linux with the right stuff built in) you should be able to do it by mounting a tmpfs with a size limit of however much memory you want to use, then spewing data into a file in that tmpfs to fill it up (by, e.g., copying data from an infinite source (e.g., The C program is really easier though, as long as you can compile for the platform. |
|||
|
|
|
@JohnBartholomew Your idea about a tmpfs mount is also not that hard and you can be more sure that it's actually consuming RAM, right? (see Chris Dodd's comment at Nick's answer)
Probably |
|||||
|
|
If you have a |
|||
|
|
|
You need to distinguish between allocated and working-set RAM. It's easy to eat up memory in bash:
but unless the script churns through the data frequently then those pages of memory are good candidates to be swapped out. |
|||
|
|
|
I came up with this. /dev is a tmpfs
|
|||
|
|
|
You can use this https://github.com/julman99/eatmemory Usage It will allocate that amount of memory until you kill the process |
|||
|
|