mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "${string#*/}" != "$string" ]; then
|
|
url="https://github.com/$1"
|
|
else
|
|
url="https://github.com/rwxrob/$1"
|
|
fi
|
|
wee "${url}"
|