dotfiles/home/private_dot_config/zsh/functions/executable_q

9 lines
111 B
Text
Raw Normal View History

2023-06-01 09:49:40 -05:00
#!/usr/bin/env zsh
if [ $# -eq 0 ];
then
curl -s cheat.sh | less -R
else
curl -s cheat.sh/${@} | less -R
fi