mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
9 lines
115 B
Plaintext
9 lines
115 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
wiki () {
|
||
|
url=$(urlencode "$*")
|
||
|
lynx "https://en.wikipedia.org/wiki/Special:Search/$url"
|
||
|
}
|
||
|
|
||
|
wiki $*
|