mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
17 lines
414 B
Bash
Executable file
17 lines
414 B
Bash
Executable file
#!/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"
|