Last active
October 7, 2016 01:12
-
-
Save romanlarionov/d9213f1a3376a9988afd8953408d6258 to your computer and use it in GitHub Desktop.
Makes a computer bark.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ "$(lsb_release -si)" == "Ubuntu" ]]; then | |
sudo apt-get -qq - y install gnustep-gui-runtime | |
fi | |
while : | |
do | |
say "bark" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl https://gist.githubusercontent.com/romanlarionov/d9213f1a3376a9988afd8953408d6258/raw/5d2fbd8d212a37d0a5a9b1eab531ee63341cfb16/bark.sh | bash