Skip to content

Instantly share code, notes, and snippets.

@DanGe42
Last active December 22, 2015 08:39
Show Gist options
  • Save DanGe42/6446191 to your computer and use it in GitHub Desktop.
Save DanGe42/6446191 to your computer and use it in GitHub Desktop.
Script that prints something related to Batman. (Not originally a script that I wrote; I just rewrote it from memory)
#!/bin/bash
trap "echo ' Batman!'; exit" SIGINT SIGQUIT
while (true)
do
echo -n "Na"
sleep 0.1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment