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