-
-
Save dave1010/858497 to your computer and use it in GitHub Desktop.
9.sh - for Peter's broken keyboard.
This file contains hidden or 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 | |
echo '(' |
This file contains hidden or 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 | |
echo 9 |
This file contains hidden or 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 | |
# 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` |
This file contains hidden or 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
<?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
alias open-parentheses='\(.sh'