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