scripts/fish/cheat

10 lines
164 B
Plaintext
Raw Permalink Normal View History

2019-08-18 06:26:48 -07:00
#!/usr/bin/env fish
2019-06-24 06:23:58 -07:00
function cheat.sh -d 'Grabs a sheet from cheat.sh' -a arg
2019-07-05 19:09:01 -07:00
curl cheat.sh/$arg
2019-06-24 06:23:58 -07:00
end
complete -c cheat.sh -xa '(curl -s cheat.sh/:list)'
## EOF