Skip to content

Instantly share code, notes, and snippets.

@picklepete
Forked from dave1010/(.sh
Created April 11, 2011 12:35
Show Gist options
  • Save picklepete/913437 to your computer and use it in GitHub Desktop.
Save picklepete/913437 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo '('
#!/bin/bash
echo 9
#!/bin/bash
# Echo a character, in case your keyboard is broken
# Installation:
# 1. Put this script in your path
# 2. Symlink the script to a filename with the broken key(s)
# e.g. if your "9" key is broken
# ln -s key.sh 9
# Usage:
# Run the script from the symlink
echo `basename $0`
<?php
// requires copy & pasting 1 char at a time
for ($i = 33; $i < 128; $i++) { echo chr($i); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment