Skip to content

Instantly share code, notes, and snippets.

@msporleder
Created July 7, 2015 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msporleder/e689b0e0b5e40462edb0 to your computer and use it in GitHub Desktop.
Save msporleder/e689b0e0b5e40462edb0 to your computer and use it in GitHub Desktop.
shmc.sh
#!/bin/sh
for i in $(perl -e 'for(1 ... 5000) { print "$_ "; }')
do
echo "hello world" > /dev/shm/foo${i};
done
for i in $(perl -e 'for(1 ... 5000) { print "$_ "; }')
do
rm /dev/shm/foo${i};
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment