mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
14 lines
133 B
Bash
Executable File
14 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cheat() {
|
|
where="$1"
|
|
if [ $# -ge 1 ]; then
|
|
shift
|
|
fi
|
|
IFS=+ curl -sS "http://cht.sh/$where/ $*"
|
|
}
|
|
|
|
cheat "$@"
|
|
|
|
|