Skip to content

Instantly share code, notes, and snippets.

@anatolyborodin
Last active February 23, 2018 13:15
Show Gist options
  • Save anatolyborodin/6a5f807f2dfccaef7ade1e02e53320c8 to your computer and use it in GitHub Desktop.
Save anatolyborodin/6a5f807f2dfccaef7ade1e02e53320c8 to your computer and use it in GitHub Desktop.
Find the bug related to ncurses and whowatch
apt update -y && apt install -y nano git whowatch && cd && git clone https://gist.github.com/6a5f807f2dfccaef7ade1e02e53320c8.git && cd 6a5f807f2dfccaef7ade1e02e53320c8
#!/bin/sh
set -e
blop()
{
if [ "$1" -gt "0" ]
then
blop $(($1 - 1)) &
blop $(($1 - 1)) &
fi
sleep 1m
}
blop 3 &
whowatch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment