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