Command List (ls)
olrd
OneLook Reverse Dictionary Find a word by giving the definition: ex. olrd barrel maker ("cooper") ex. olrd museum guide ("docent") Also, find crossword answers: ex. olrd m?z??t:composer ("Mozart") ex. olrd sat*:composer ("Satie")
12578531 uses
-
Created 2006-01-27 19:37:51
-
Last used
2026-06-03 10:04:32
-
Nominate -
Description
-
http://www.onelook.com/?w=*&loc=revfp&clue=%s
match
(Golden Egg)
NAME match - Run a RegExp pattern against a string SYNOPSIS match [STRING] [-url [URL FOR PAGE TO USE AS STRING]] -pattern [REGEXP PATTERN] -nbrmatches [RETURN NUMBER OF MATCHES?] -matchnbr [RETURN MATCH AT] -capture [CAPTURE?] -as [AS] -callback [CALLBACK] EXAMPLES match <div>hello</div>blah -pattern /<div>.*?<\/div>/ returns an XML-style 'array' with one element, '<div>hello</div>' match <div>hello</div>blah<div>hi</div> -pattern /<div>.*?<\/div>/ returns an XML-style 'array' with two element…
5706023 uses
-
Created 2006-04-26 07:40:22
-
Last used
2026-04-04 07:48:09
-
Description
-
http://jonathanaquino.com/singpolymaplay/yubnub-match.php?xn_auth=no&string=%s&pattern=${pattern}&nbrmatches=${nbrmatches}&matchnbr=${matchnbr}&capture=${capture}&as=${as}&callback=${callback}&url=${url}
%
(Golden Egg)
NAME % - Returns a sublist of words for a given phrase SYNOPSIS % [RANGE] [PHRASE] [-SILENT true] arguments: <RANGE> The format of the range parameter is: N N'th word of the phrase, counted from 1 N- from N'th word to end of phrase N-M from N'th to M'th (included) word -M from first to M'th (included) word This syntax is is based on the Linux command CUT Here's the manual page: http://nixdoc.net/man-pages/Linux/man1/CUT.1.html <PHRASE> The string, words separated by spaces. <SILENT true> Option…
3101791 uses
-
Created 2005-12-14 18:31:38
-
Last used
2026-01-13 18:27:38
-
Description
-
http://jonathanaquino.com/yubtools/split.php?phrase=%s&silentmode=${silent}&xn_auth=no
gdeff
Performs a "Google Define:" command which gets definitions of the word(s) in all languages you've submitted
2261430 uses
-
Created 2006-09-08 06:56:40
-
Last used
2025-04-19 22:04:52
-
Nominate -
Description
-
http://www.google.com/search?q=define%3A+%s&hl=en&lr=&oi=definel&defl=all
ifThen
(Golden Egg)
NAME ifThen - Compares two values (or evaluates a conditional statement) and returns a value based on the result SYNOPSIS This command can be used with two different syntaxes: ifThen -value1 [VALUE 1] -value2 [VALUE 2] -test [CONDITIONAL TEST] -then [RESULT IF TRUE] -else [RESULT IF FALSE] -redirect [REDIRECT] OR: ifThen (CONDITIONAL STATEMENT)RESULT IF TRUE, RESULT IF FALSE -delimit [DELIMITER] -redirect [REDIRECT] EXAMPLES The following are examples using both of the two syntaxes: ifThen -val…
1090467 uses
-
Created 2005-08-12 04:14:04
-
Last used
2023-11-19 06:52:35
-
Description
-
http://jonathanaquino.com/yubscripts/ifthen/ifthen.php?value1=${value1}&value2=${value2}&test=${test}&then=${then}&els=${else}&redirect=${redirect=false}&input=%s&delimit=${delimit=,}&xn_auth=no
recursiveLast
Returns the last word in a phrase, using a silly recursion of browser redirects. If the phrase is too long, your browser may give up on following the trail of breadcrumbs. Example: reursiveLast one two three (returns "three").
479614 uses
-
Created 2006-03-07 18:55:14
-
Last used
2013-05-26 00:06:08
-
Nominate -
Description
-
ifThen -redirect True -value1 {% 2- %s} -value2 -test EQUAL -then %s -else http://yubnub.org{url[no url encoding] recursiveLast {% 2- %s}} [no url encoding]
create
(Golden Egg)
SYNOPSIS create [command-name] EXAMPLE create Creates a new YubNub command with the given name (must not already exist). You will be prompted for a URL pointing to the implementation of the command -- it might be an existing service (e.g. the Google Image Search submit form), or your own custom implementation sitting on your own server. Welcome to the Web OS: small pieces, loosely joined.
350651 uses
-
Created 2005-06-04 18:52:07
-
Last used
2026-06-16 04:45:17
-
Description
-
http://yubnub.org/command/new?name=%s
strReplace
(Golden Egg)
NAME strReplace - replace all instances of a character or string found within another string SYNOPSIS strReplace -find [TEXT TO FIND] -replace [TEXT TO SUBSITUTE IN] -string [STRING TO BE SEARCHED] EXAMPLES strReplace -find pizza -replace hot dogs -string I like pizza. (returns: I like hot dogs.) strReplace -find a -replace o -string Banana Camera (returns: Bonono Camero) Replaces all instances of a string or character with another string or character, and returns the resulting string. This com…
283220 uses
-
Created 2005-08-13 19:16:44
-
Last used
2025-01-08 10:45:36
-
Description
-
http://jonathanaquino.com/yubscripts/strings/stringmanip.php?command=strreplace&find=${find}&replace=${replace}&string=${string}&xn_auth=no
am
(Golden Egg)
SYNOPSIS am [keywords] EXAMPLE am a brief history of time Searches Amazon.com using the given keyword (e.g. book title, author, etc.) ---------- Old implementation: http://www.amazon.com/exec/obidos/external-search?mode=blended&keyword={iconv - to ISO-8859-1 -str %s}[use %20 for spaces] http://www.amazon.com/s/?field-keywords=%s
255970 uses
-
Created 2005-06-04 20:06:51
-
Last used
2026-06-15 17:35:48
-
Description
-
https://www.amazon.com/s?k=%s
strFind
(Golden Egg)
NAME strFind - Returns the position of a string or character within another string SYNOPSIS strFind -find [TEXT TO FIND] -string [STRING TO BE SEARCHED] -reverse [REVERSE SEARCH] EXAMPLES strFind -find b -string abcabc (returns: 2) strFind -find b -string abcabc -reverse true (returns: 5) strFind -find z -string abcabc (returns: 0) Returns the position of the first occurence of a string or character within another string. If nothing is found, the command returns 0. Set -reverse to TRUE if you w…
247854 uses
-
Created 2005-08-13 19:40:44
-
Last used
2025-12-12 08:56:03
-
Description
-
http://jonathanaquino.com/yubscripts/strings/stringmanip.php?command=strfind&find=${find}&reverse=${reverse=FALSE}&string=${string}&xn_auth=no
eop
(Golden Egg)
NAME eop - Checks the value between two tokens in a string. If empty, nothing is returned. If not empty, the whole string is returned. SYNOPSIS eop [STRING] -else [VALUE IF EMPTY] -token [TOKEN VALUE (Default @)] EXAMPLES eop I like @monkeys@ (returns "I like monkeys") eop I like @@ (returns "") eop I like @@ -else Hello World! (returns "Hello World!") http://images.google.com/{eop images?q=@%s@} (If %s has a value, you are sent to http://images.google.com/images?q=%s, if it has no value you ar…
244652 uses
-
Created 2006-04-02 16:43:25
-
Last used
2023-03-03 11:24:35
-
Description
-
ifthen -value1 {strfind -find ${token=@}${token=@} -string %s} -value2 0 -test equal -then {strreplace -find ${token=@} -replace -string %s} -else ${else}
explode
(Golden Egg)
NAME explode - Explodes a string to an array in xml, xoxo, or json(p) format EXAMPLES explode 1,2,3,4 Returns XML-style 'array' with elements 1, 2, 3, and 4 explode 1+2+3+4 -token + Returns XML-style 'array' with elements 1, 2, 3, and 4 explode 1,2,3,4 -as xoxo Returns XOXO-style 'array' with elements 1, 2, 3, and 4 explode 1,2,3,4 -as json Returns JSON-style 'array' with elements 1, 2, 3, and 4 explode 1,2,3,4 -as json -callback x Returns JSONP-style 'array' with elements 1, 2, 3, and 4 using …
211559 uses
-
Created 2006-04-25 11:02:09
-
Last used
2024-10-12 17:48:57
-
Description
-
http://jonathanaquino.com/singpolymaplay/yubnub-explode.php?xn_auth=no&data=%s&token=${token=,}&as=${as=xml}&callback=${callback}
foreach
(Golden Egg)
NAME foreach - Loop through an 'array' and runs a YubNub command EXAMPLES foreach {explode 1,2,3,4} echos each array item 1, 2, 3, and 4 (as produced by explode) foreach {explode 1,2,3,4} -cmd sum 1 echos each array item increased by one foreach {explode 1,2,3,4} -cmd var tmp -set [|sum 1 %s|] sets var tmp to one greater than each array item, in order foreach {explode 1,2,3,4} -as array gives back an XML-type 'array' with the elements 1, 2, 3, and 4 foreach {explode 1,2,3,4} -as array -type xox…
207534 uses
-
Created 2006-04-25 12:13:22
-
Last used
2025-06-11 22:08:27
-
Description
-
http://jonathanaquino.com/singpolymaplay/yubnub-foreach.php?xn_auth=no&data=%s&cmd=${cmd=echo}&as=${as}&type=${type}&callback=${callback}
FB
facebook search for keyword or shortcut to facebook main page (if no keyword given) searches Names, Profiles, Groups, Events in All Networks for keyword Examples: fbk john doe alaska (goes to http://www.facebook.com/s.php?q=john+doe+alaska) fbk (goes to http://www.facebook.com)
189738 uses
-
Created 2005-06-25 02:53:32
-
Last used
2026-06-15 09:55:59
-
Nominate -
Description
-
http://www.facebook.com{ifThen -value1 %s -value2 -test NOTEQUAL -then /s.php?q=%s}
scrape
(Golden Egg)
NAME scrape - display a snippet of text parsed from a web page. SYNOPSIS scrape -tokens TOKENS -dirs DIRECTIONS -url URL [options] Mandatory arguments: -tokens <token_list_string> A list of tokens (delimited by spaces) which the user has determined to be sufficient to consistently point the parser to the exact location of the required data. For example -tokens <title> </title> would return all characters between these two HTML tags. -dirs <direction_list_string> A list of directions associated …
145875 uses
-
Created 2005-07-22 03:42:49
-
Last used
2026-04-30 10:22:08
-
Description
-
http://efridge.net/yubnub/parse.php?ynp_tokens=${tokens}&ynp_dirs=${dirs}&yndesturl=${url}&ynp_debug=${debug=0}&ynp_http=${method=get}&ynp_scrape=${textonly=1}
gmail
(Golden Egg)
With no parameter, opens GMail, with a parameter, searches GMail for parameter (must be logged in). Examples: gmail - opens GMail gmail world peace - searches GMail for world peace (if logged in) Stian Haklev, shaklev@gmail.com. My first command using eop, thanks Allen, this is awesome!
145756 uses
-
Created 2005-06-06 20:39:07
-
Last used
2026-06-14 12:11:46
-
Description
-
https://gmail.google.com/{eop gmail?search=query&q=@%s@&view=tl&fs=1}
gma
(Golden Egg)
With no parameter, opens GMail, with a parameter, searches GMail for parameter (must be logged in). Examples: gma - opens GMail gma world peace - searches GMail for world peace (if logged in) Proposed as replacement for gma. Stian Haklev, shaklev@gmail.com. My first command using eop, thanks Allen, this is awesome! ========== Old implementation: https://gmail.google.com/{eop gmail?search=query&q=@%s@&view=tl&fs=1}
89970 uses
-
Created 2005-06-22 23:30:00
-
Last used
2026-06-05 02:21:18
-
Description
-
https://mail.google.com/{eop mail/#search/@%s@ -else }
ges
Buscar páginas en español en Google.es (Google.es search for pages in Spanish) Ejemplo/example: ges perico palotes
81085 uses
-
Created 2005-10-09 20:40:46
-
Last used
2026-06-16 02:54:25
-
Nominate -
Description
-
http://www.google.es/search?hl=es&lr=lang_es&q=%s
cmdline
(Golden Egg)
NAME cmdline - opens a command line frame at the bottom of the screen cmd - an alias for cmdline SYNOPSIS cmdline [options] cmd [options] Optional arguments: -br <browser_type = ff> If not included, cmdline will assume that a Firefox browser is being used. This is the default value of "ff". If set to "ie", cmdline will assume an Internet Explorer browser is being used. -fc <font_colour = black> If not included, the cmdline will use a black font. This is the default value. HTML colour names, hex…
75234 uses
-
Created 2005-08-06 03:38:24
-
Last used
2026-06-15 08:34:29
-
Description
-
http://efridge.net/yubnub/ynframes.php?args=%s
strLength
(Golden Egg)
NAME strLength - returns the length of a string SYNOPSIS strLength [STRING] EXAMPLES strLength abcdefg (returns: 7) strLength This is a string (returns: 16) This command will return the length of the inputted string. Do not surround the string with quotes. AUTHOR Allen Ormond <aormond (at) fromrocks (dot) com>
73529 uses
-
Created 2005-08-12 00:58:20
-
Last used
2022-02-13 14:08:51
-
Description
-
http://jonathanaquino.com/yubscripts/strings/stringmanip.php?command=strlength&input=%s&xn_auth=no
gn
Google News (copied from gnews)
55335 uses
-
Created 2005-06-21 15:31:44
-
Last used
2026-06-12 14:28:29
-
Nominate -
Description
-
http://news.google.com/news?num=100&hl=en&lr=&tab=wn&ie=UTF-8&q=%s&scoring=d
tr
(Golden Egg)
SYNOPSIS tr FROM TO TEXT EXAMPLES tr en fr hello Translates the given text from the first language to the second language, courtesy of Google Language Tools. The above example translates "hello" from English (en) to French (fr). Not all language combinations are available. Chinese (Simplified) zh-CN English ............ en French ............. fr German ............. de Italian ............ it Japanese ........... ja Korean ............. ko Portuguese ......... pt Spanish ............ es
53237 uses
-
Created 2005-06-07 06:37:56
-
Last used
2026-06-07 02:19:30
-
Description
-
http://yubnub.org/example/tr?args=%s
gmx
SYNOPSIS gmx [keywords] EXAMPLE gmx inequidad gmx iniquidad Performs a Google.com.mx (Google's Mexico Domain) search using the given keywords.
50580 uses
-
Created 2006-04-28 00:43:48
-
Last used
2026-06-15 20:30:48
-
Nominate -
Description
-
http://www.google.com.mx/search?hl=es&q=%s
wpes
(Golden Egg)
Spanish Wikipedia SYNOPSIS wpes [keywords] EXAMPLE wpes yubnub Searches es.wikipedia.org using the given keyword (e.g. article name, subject, etc.)
47486 uses
-
Created 2005-06-09 12:04:17
-
Last used
2026-06-15 08:56:00
-
Description
-
http://es.wikipedia.org/wiki/Especial:Search?search=%s
filterstring
(Golden Egg)
SYNTAX filterstring (number) [phrase] Performs opposite %. Removes a word from a string based on the number given. A "-" before or after the number will remove all words before, or after the corresponding word as well. EXAMPLE filterstring 2 How is the world today? (returns "How the world today?" filterstring 1 Hello world! (returns "world!") filterstring 2- gim cars like the porsche (returns "gim") filterstring -3 How is the world today? (returns "world today?") Created for piping purposes. ht…
46791 uses
-
Created 2006-01-30 22:24:17
-
Last used
2023-03-03 12:32:25
-
Description
-
http://www.jakeisgod.com/yubnub/filterstring.php?input=%s
date
(Golden Egg)
NAME date - print the system date and time SYNOPSIS date -format [FORMAT] -offset [DAYS] EXAMPLES date date -format m/d/Y -offset -7 Displays the current date and time, offset by the given number of DAYS. The FORMAT is given by the codes below: a The abbreviated weekday name ("Sun") A The full weekday name ("Sunday") b The abbreviated month name ("Jan") B The full month name ("January") c The preferred local date and time representation d Day of the month (01..31) H Hour of the day, 24-hour clo…
36762 uses
-
Created 2005-07-17 02:34:38
-
Last used
2026-05-22 02:24:13
-
Description
-
http://yubnub.org/example/today?format=${format=Y-m-d}&offset=${offset=0}
extractDomainName
SYNOPSIS extractDomainName [URL] EXAMPLES extractDomainName http://www.amazon.com/ returns: amazon.com extractDomainName eemadges.com returns: eemadges.com extractDomainName http://en.wikipedia.org?search=%s returns: en.wikipedia.org extractDomainName http://seek.sing365.com:8080/cgi-bin/s.cgi?q=ladytron returns: sing365.com extractDomainName https://www.cia.gov/cia/publications/factbook/geos/.html returns: cia.gov (thanks to Frank Raiser for noticing the https bug!) Extracts the domain name fr…
36522 uses
-
Created 2006-01-21 22:33:14
-
Last used
2024-04-10 08:19:02
-
Nominate -
Description
-
http://jonathanaquino.com/extractDomainName.php?url=%s
wikigo
Go directly to article page for Wikipedia, instead of a results page. Some people may prefer this over "wiki" which sends one to a results page. Type "wiki " (space included) then your search term.
34286 uses
-
Created 2006-01-06 01:07:42
-
Last used
2026-05-28 11:54:52
-
Nominate -
Description
-
http://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go
rt
Search the Rotten Tomatoes movie review site (www.rottentomatoes.com). Search restricted to movies only.
33110 uses
-
Created 2005-06-09 16:13:04
-
Last used
2026-06-14 11:10:39
-
Nominate -
Description
-
http://www.rottentomatoes.com/search/?search=%s[use %20 for spaces]
>
(Golden Egg)
SYNOPSIS > [Yubnub command] [query] EXAMPLES > wp Figures of speech results: the article in the English Wikipedia about Figures of speech > wpde Jonathan Ive results: the article in the German (de!) Wikipedia about Jonathan Ive > am The Future and its Enemies results: the page in Amazon for Viginia Postrel's book The Future and its Enemies > imdb Amelie results: the page in the IMDB for Le Fabuleux destin d'Amélie Poulain > cia India results: the CIA Factbook entry for India. (And this is is a …
31430 uses
-
Created 2006-01-21 23:07:20
-
Last used
2024-07-21 18:20:47
-
Description
-
gfl site:{ extractDomainName { url {% 1 %s} } } {% 2- %s} [no url encoding]
dd
(Golden Egg)
Domain Dossier - Investigates Domains and IP address. Performs whois(domain name), network whois(IP block), authoritative DNS query, traceroute and a non-intrusive portscan(common services only). Can handle all canonical names, aliases and addresses. Usage: dd <domain name or IP address>
31068 uses
-
Created 2005-06-20 20:28:09
-
Last used
2026-06-15 04:24:16
-
Description
-
http://centralops.net/co/DomainDossier.aspx?addr=%s&dom_dns=true&dom_whois=true&net_whois=true&svc_scan=true&traceroute=true&go1=Submit
Sum
(Golden Egg)
NAME Sum - adds values together SYNOPSIS Sum [VALUE1] [VALUE2] [VALUE3] ... EXAMPLES Sum 20 5.3 (result: 25.3) Sum 2 4 6 8 10 (result: 30) This command adds space separated numbers together. You can use as many numbers as you like. AUTHOR Allen Ormond <aormond (at) fromrocks (dot) com>
30325 uses
-
Created 2005-08-13 22:59:26
-
Last used
2026-04-14 21:50:41
-
Description
-
http://jonathanaquino.com/yubscripts/math/math.php?command=sum&input=%s&xn_auth=no
strLeft
(Golden Egg)
NAME strLeft - returns characters from the beginning of a string SYNOPSIS strLeft [STRING] [LENGTH] EXAMPLES strLeft abcdefg 3 (returns: "abc") strLeft This is a string 6 (returns: "This i") This command requires two parameters, a string and an integer. It will chop off and return the beginning of the string the length of the integer. Do not surround the string with quotes. The integer must come after a space at the end of the string. AUTHOR Allen Ormond <aormond (at) fromrocks (dot) com>
28808 uses
-
Created 2005-08-12 00:36:27
-
Last used
2019-10-23 13:59:34
-
Description
-
http://jonathanaquino.com/yubscripts/strings/stringmanip.php?command=strleft&input=%s&xn_auth=no
gis
Google Image Seach is usually referred to as GIS (rather than GIM), this is just a helpful alias for gim gis mclaren f1
28267 uses
-
Created 2005-06-20 18:08:01
-
Last used
2026-06-15 09:36:17
-
Nominate -
Description
-
http://images.google.com/images?q=%s
strRight
(Golden Egg)
NAME strRight - returns characters from the end of a string SYNOPSIS strRight [STRING] [LENGTH] EXAMPLES strRight abcdefg 3 (returns: "efg") strRight This is a string 4 (returns: "ring") This command requires two parameters, a string and an integer. It will chop off and return the end of the string the length of the integer. Do not surround the string with quotes. The integer must come after a space at the end of the string. AUTHOR Allen Ormond <aormond (at) fromrocks (dot) com>
27840 uses
-
Created 2005-08-12 00:38:54
-
Last used
2017-05-29 13:31:01
-
Description
-
http://jonathanaquino.com/yubscripts/strings/stringmanip.php?command=strright&input=%s&xn_auth=no
gup
SYNOPSIS gup [keywords] EXAMPLE gup YubNub Performs a Google search (UnPersonalized) using the given keywords.
27547 uses
-
Created 2009-02-11 02:51:46
-
Last used
2025-03-25 11:57:37
-
Nominate -
Description
-
http://www.google.com/search?q=%s&pws=0
enes
translates words from English into Spanish (wordreference.com) traduce palabras de inglés a español (wordreference.com)
27429 uses
-
Created 2005-10-20 12:54:35
-
Last used
2026-06-02 14:14:22
-
Nominate -
Description
-
http://www.wordreference.com/es/translation.asp?tranword=%s&dict=enes&B10=Search
wa
Wolfram|Alpha Search. Wolfram|Alpha is a computational knowlegde engine. It generates output by doing computations from its own internal knowledge base, instead of searching the web and returning links. A few things to try: * enter any date (e.g. a birth date): june 23, 1988 * enter any town (e.g. a home town): new york * enter any two stocks: IBM Apple * enter any calculation: $250 + 15% * enter any math formula: x^2 sin(x) http://www.wolframalpha.com
26194 uses
-
Created 2009-05-19 08:20:47
-
Last used
2026-05-07 17:48:53
-
Nominate -
Description
-
http://www.wolframalpha.com/input/?i=%s
gsm
Google Image Search (Safemode is off)
25471 uses
-
Created 2006-06-12 18:04:05
-
Last used
2025-04-19 01:09:30
-
Nominate -
Description
-
http://images.google.com/images?safe=off&q=%s
bl
(Golden Egg)
Bloglines Usage: if used without an argument, goes to the Bloglines homepage, if used with an argument goes to the subscribe page for that url (could be a website with a feed, or a feed). You might have to log in first. Examples: bl bl wired.com bl http://wired.com/feed.xml Stian Haklev, shaklev@gmail.com (thanks for the help guys) (added tweak from b.a.)
22864 uses
-
Created 2005-06-07 03:41:23
-
Last used
2025-08-25 19:29:27
-
Description
-
http://www.bloglines.com/{ifthen -value1 %s -value2 -test NOTEQUAL -then sub/%s -else myblogs}[no url encoding]
gocl
Búsqueda en toda la web a través de Google Chile (http://www.google.cl) Ejemplo: gocl Pinochet dictador asesino ladrón Acepta los operadores avanzados de google.
22454 uses
-
Created 2007-10-14 01:23:07
-
Last used
2016-04-05 07:24:15
-
Nominate -
Description
-
http://www.google.cl/search?hl=es&q=%s&meta=&aq=&oq=
old!
Identifies your use of a YubNub (aliases) command. SYNTAX ! [alias name] [parameters, if any] (Performs an alias search.) ! (Directs you to the YubNub (aliases) home page.) WHAT IS YUBNUB (ALIASES)? YubNub (aliases) is an extension for YubNub allowing you to create your own commands, shortcuts, memos, etc. using a YubNub-based cookies system. HOW DO I USE YUBNUB (ALIASES)? YubNub (aliases) uses several YubNub commands to operate properly.In order to set a personal command, such as a bookmark c…
22000 uses
-
Created 2006-02-01 04:41:20
-
Last used
2021-10-14 04:51:28
-
Nominate -
Description
-
http://www.jakeisgod.com/yubnub/aliases/jobactions.cfm?action=search&cmd={filterstring 2- %s}&s={filterstring 1 %s}[no url encoding]
yubnub
(Golden Egg)
SYNOPSIS yubnub [command] EXAMPLE yubnub man ls Alright, this one is kind of weird. It's a YubNub command for ... YubNub itself. So in the above example, "yubnub man ls" is the same as "man ls". It's mostly a test for consistency: that YubNub can add itself as a YubNub command. In fact, the above is equivalent to "yubnub yubnub yubnub man ls". (That's how the Ewoks teach Linux).
21902 uses
-
Created 2005-06-05 23:14:17
-
Last used
2026-05-25 10:36:03
-
Description
-
http://yubnub.org/parser/parse?command=%s
python
(Golden Egg)
Python site search (via Google).
20603 uses
-
Created 2005-06-06 20:45:39
-
Last used
2026-05-11 02:46:36
-
Description
-
http://www.google.com/search?q=%s&domains=docs.python.org&sitesearch=docs.python.org&sourceid=google-search&submit=submit
lcase
(Golden Egg)
NAME lcase - convert text to lowercase SYNOPSIS lcase [STRING] EXAMPLE lcase Hello, World! AUTHOR Jonathan Aquino <jonathan.aquino@gmail.com> (Requested by Allen Ormond)
20269 uses
-
Created 2005-08-07 17:10:41
-
Last used
2026-06-03 23:15:31
-
Description
-
http://yubnub.org/example/lcase?text=%s
Face
facebook search for keyword or shortcut to facebook main page (if no keyword given) searches Names, Profiles, Groups, Events in All Networks for keyword Examples: fbk john doe alaska (goes to http://www.facebook.com/s.php?q=john+doe+alaska) fbk (goes to http://www.facebook.com)
19133 uses
-
Created 2005-06-16 13:32:32
-
Last used
2026-05-10 09:01:45
-
Nominate -
Description
-
http://www.facebook.com{ifThen -value1 %s -value2 -test NOTEQUAL -then /s.php?q=%s}
sp2en
Spanish to English dictionary (Wordreference.com)
18395 uses
-
Created 2005-07-26 11:08:51
-
Last used
2026-06-11 18:09:37
-
Nominate -
Description
-
http://wordreference.com/es/en/translation.asp?spen=%s&v=b
en2sp
translates words from English into Spanish (wordreference.com) traduce palabras de inglés a español (wordreference.com)
18393 uses
-
Created 2005-10-22 02:22:19
-
Last used
2026-06-14 12:37:55
-
Nominate -
Description
-
http://www.wordreference.com/es/translation.asp?tranword=%s&dict=enes&B10=Search
esen
translates from Spanish into English (wordreference.com) traduce de español a inglés (wordreference.com)
16457 uses
-
Created 2005-10-20 12:56:51
-
Last used
2026-06-15 03:02:08
-
Nominate -
Description
-
http://www.wordreference.com/es/en/translation.asp?spen=%s
Next Page