1
0
mirror of https://github.com/sheumann/hush.git synced 2025-03-30 06:29:56 +00:00

12 lines
193 B
Bash
Executable File

#!/bin/sh
busybox=../busybox
$busybox sleep 10 &
pid=$!
sleep 1
echo "Memory map of '$busybox sleep 10':"
size $busybox
pmap $pid | env - grep "^[0-9a-f][0-9a-f]* " | sort -r -t " " -k2,999