9 lines
111 B
Text
9 lines
111 B
Text
|
#!/usr/bin/env zsh
|
||
|
|
||
|
if [ $# -eq 0 ];
|
||
|
then
|
||
|
curl -s cheat.sh | less -R
|
||
|
else
|
||
|
curl -s cheat.sh/${@} | less -R
|
||
|
fi
|