Last active
August 29, 2015 14:06
-
-
Save zekesonxx/33dce67a5ebd26c53fc2 to your computer and use it in GitHub Desktop.
Simple CLI tutorial to simulate the computer of @DaemonLee
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
#!/usr/bin/env bash | |
# | |
# Zeke's Computer Simulator V2 | |
# Written to simulate the computer of Daemon Lee Schmidt <github.com/daemonlee>. | |
# Get Updates From https://gist.github.com/zekesonxx/33dce67a5ebd26c53fc2 | |
# | |
# - V2 | |
# Fixed a terminology error | |
# - V1 | |
# Original Version | |
# | |
# (C) Zeke Sonxx <github.com/zekesonxx> | |
# Licensed under the MIT license | |
while true; do | |
echo "[1] chromium: segmentation fault (core dumped) " | |
sleep 5 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment