mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
10 lines
149 B
Plaintext
10 lines
149 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
url="https://github.com/rwxrob/rwxrob/search?q=$(urlencode $*)"
|
||
|
|
||
|
if [[ -n $MYVIMRC ]]; then
|
||
|
echo "$url"
|
||
|
else
|
||
|
wee "$url"
|
||
|
fi
|