Add cheat.sh script

This commit is contained in:
ItsDrike 2021-12-09 19:05:19 +01:00
parent 656f29b333
commit 7d3eb5ae69
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843

View file

@ -0,0 +1,16 @@
#!/bin/sh
languages=`echo "python rust golang lua cpp c typescript nodejs javascript js" | tr ' ' '\n'`
core_utils=`echo "xargs find sed awk" | tr ' ' '\n'`
selected=`printf "$languages\n$core_utils" | fzf`
read -p "query: " query
query=`echo "$query" | tr ' ' '+'`
if printf "$languages" | grep -qs "$selected"; then
url="cheat.sh/$selected/$query"
else
url="cheat.sh/$selected~$query"
fi
curl "$url"