diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-03-12 19:54:51 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-03-12 19:54:51 +0530 |
commit | 54b772cae06eb25adf33297e35234f33ded81a7b (patch) | |
tree | f287ee48faa8013e4a8f0ee764a6d3cd850bb24d /.scripts/urbandictserch | |
parent | 7197e45d94dbcf4877d585fff8e634896876ae83 (diff) |
neovim addition
Diffstat (limited to '.scripts/urbandictserch')
-rwxr-xr-x | .scripts/urbandictserch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.scripts/urbandictserch b/.scripts/urbandictserch new file mode 100755 index 0000000..c007d60 --- /dev/null +++ b/.scripts/urbandictserch @@ -0,0 +1,15 @@ +#!/bin/sh + +search=$(echo "" | dmenu -p 'Urban Dictionary:'|sed 's/ /%20/g') + +curl -s "https://api.urbandictionary.com/v0/define?term={$search}" | jq '.' | grep --color=always definition | awk 'BEGIN {RS="definition"; ORS=""} {print $0""++i}' > /tmp/urban-dic + +n=$(wc -l < /tmp/urban-dic) +touch /tmp/urban-dic.txt && > /tmp/urban-dic.txt + +for i in $(eval echo {1..$n}p) +do + sed -n $i /tmp/urban-dic|sed -r "s/\x1B\[[0-9;]*[a-zA-Z]//g" >> /tmp/urban-dic.txt +done +cat /tmp/urban-dic.txt | dmenu -l $n -p "$1"i + |