mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
10 lines
153 B
Plaintext
10 lines
153 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
url="https://www.youtube.com/c/rwxrob/search?query=$(urlencode $*)"
|
||
|
|
||
|
if [[ -n $MYVIMRC ]]; then
|
||
|
echo "$url"
|
||
|
else
|
||
|
wee "$url"
|
||
|
fi
|