Command List (ls)
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
wp
(Golden Egg)
English WikiPedia search ---------- Old implementation: http://en.wikipedia.org/{ifThen -value1 %s -value2 -test NOTEQUAL -then ?search=%s -else wiki/Main_Page}
2759973 uses
-
Created 2005-06-05 22:32:14
-
Last used
2026-06-09 12:10:04
-
Description
-
http://en.wikipedia.org/?search=%s
pipett
test
2267517 uses
-
Created 2006-10-15 17:41:30
-
Last used
2013-02-19 06:29:52
-
Nominate -
Description
-
open {url pipett {% 2- %s}};{url echo {% 1 %s}}
tass_rss
Tass RSS feed
1677027 uses
-
Created 2024-10-28 06:21:08
-
Last used
2026-06-09 08:14:08
-
Nominate -
Description
-
https://rsshub.app/telegram/channel/tass_agency?t={random -max 9999999}
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]
split
(Golden Egg)
NAME split - displays several webpages on a single screen SYNOPSIS split [URL] [URL] [URL] ... EXAMPLE split http://google.com http://yahoo.com http://answers.com split {url g porsche} {url y porsche} {url a porsche} AUTHOR Jonathan Aquino <jonathan.aquino@gmail.com>
285978 uses
-
Created 2005-07-22 03:45:37
-
Last used
2026-04-25 23:42:54
-
Description
-
http://yubnub.org/example/split?type=t&urls=%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
255943 uses
-
Created 2005-06-04 20:06:51
-
Last used
2026-06-09 08:26:17
-
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}
mash2
(Golden Egg)
NAME mash2 - A rewrite of the mash command that allows for multiple keywords and unlimited commands. SYNOPSIS mash2 [KEYWORDS] -cmd [YUBNUB COMMANDS] EXAMPLES mash2 singpolyma comments -cmd g y am a gfl gdeff del2 Mashes the results for 'singpolyma comments' from the g, y, am, a, gfl, gdeff, and del2 commands on one page. NOTES See also : mash, mashswitch, mash2test, ms2 AUTHOR Stephen Paul Weber a.k.a. Singpolyma http://singpolyma-tech.blogspot.com/ Kudos to Brian A a.k.a. chicagosage for his …
205941 uses
-
Created 2006-11-22 17:42:37
-
Last used
2026-03-21 13:45:01
-
Description
-
split {foreach {explode ${cmd} -token <space>} -cmd echo [|url %25s %s|] -as <space>}
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)
189734 uses
-
Created 2005-06-25 02:53:32
-
Last used
2026-06-06 10:27:51
-
Nominate -
Description
-
http://www.facebook.com{ifThen -value1 %s -value2 -test NOTEQUAL -then /s.php?q=%s}
random
(Golden Egg)
NAME rand - display a specified number of random numbers in a specified range, courtesy of random.org SYNOPSIS rand -min <min value = 1> -max <max value = 100> -num <how many to generate = 1> EXAMPLE rand 49 rand -min 1998 -max 2005 rand -num 5 -max 20 AUTHOR Richard Frankel
146930 uses
-
Created 2005-06-04 19:57:44
-
Last used
2026-06-09 09:37:42
-
Description
-
http://jonathanaquino.com/random.php?num=${num=1}&min=${min=1}&max=%s${max}&col=1
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!
145754 uses
-
Created 2005-06-06 20:39:07
-
Last used
2026-06-03 10:57:35
-
Description
-
https://gmail.google.com/{eop gmail?search=query&q=@%s@&view=tl&fs=1}
iconv
(Golden Egg)
Converts a string from one character set to another, similar to the iconv commmand/function in Unix and PHP. Example: iconv -from UTF-8 -to UTF-16 -str test The "from" and "to" parameters both default to UTF-8. //IGNORE and //TRANSLIT are supported; see http://us3.php.net/manual/en/function.iconv.php for more information. http://www.ibiblio.org/weidai/iconv_list.php lists known coded character sets.
130524 uses
-
Created 2008-05-25 01:59:04
-
Last used
2021-08-14 11:33:19
-
Description
-
http://www.ibiblio.org/weidai/iconv.php?from=${from=UTF-8}&to=${to=UTF-8}&str=${str}
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 }
r4go
r4go
86593 uses
-
Created 2014-09-01 06:55:36
-
Last used
2026-04-26 10:48:39
-
Nominate -
Description
-
http://maps.googleapis.com/maps/api/staticmap?center=${1},${2}&size=419x230&zoom=${31=13}&scale=2&maptype=${32=hybrid}&markers=icon:http://goo.gl/v2Jc9o%7C${3},${4}&markers=icon:http://goo.gl/kX2qJD%7C${5},${6}&markers=icon:http://goo.gl/OOl5LJ%7C${7},${8}&markers=icon:http://goo.gl/rdB2F0%7C${9},${10}&markers=icon:http://goo.gl/JE3MF8%7C${11},${12}&markers=color:yellow%7Clabel:1%7C${13},${14}&markers=color:yellow%7Clabel:2%7C${15},${16}&markers=color:yellow%7Clabel:3%7C${17},${18}&markers=color:yellow%7Clabel:4%7C${19},${20}&markers=color:yellow%7Clabel:5%7C${21},${22}&markers=color:yellow%7Clabel:6%7C${23},${24}&markers=color:yellow%7Clabel:7%7C${25},${26}&markers=color:yellow%7Clabel:8%7C${27},${28}&markers=color:yellow%7Clabel:9%7C${29},${30}
xe
(Golden Egg)
Performs a currency conversion. Usage: xe -amount <amount> -from <currency1> -to <currency2> e.g. xe -amount 100 -from USD -to EUR All of the currency 3 letter abbreviations can be found at: http://www.xe.com/iso4217.htm
71327 uses
-
Created 2005-06-21 19:29:59
-
Last used
2026-06-09 09:09:06
-
Description
-
http://www.xe.com/ucc/convert.cgi?Amount=${amount}&From=${from}&To=${to}
ifEmpty
(Golden Egg)
A simple remix of ifThen to make it easier to test for emptiness. Example: ifEmpty -value minsky -then nothing -else something returns: something ifEmpty -value -then nothing -else something returns: nothing
59105 uses
-
Created 2006-01-31 00:53:51
-
Last used
2025-01-08 21:27:20
-
Description
-
ifThen -value1 ${value} -value2 -test EQUAL -then ${then} -else ${else}
Simpsons-old
NAME Simpsons - display quotes of any Simpsons character. SYNOPSIS Simpsons [-number NUMBER] Optional arguments: -number <a number = 1> Indicates the number of quotes to be displayed. If not included, only one quote will be shown. EXAMPLE To view one quote: Simpsons To view five quotes: Simpsons -number 5 ... NOTES Enjoy. AUTHOR Fuska
50795 uses
-
Created 2005-07-30 13:18:02
-
Last used
2024-07-26 22:08:07
-
Nominate -
Description
-
http://www.thesimpsonsquotes.com/random.php?num=${number=1}
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
alexarfa
takes a site as input and returns it's ranking in Iran, based on alexa information.
46273 uses
-
Created 2010-02-09 14:20:12
-
Last used
2024-04-24 17:41:56
-
Nominate -
Description
-
scrape -tokens Iran Flag > < -dirs 0 0 0 0 -url http://www.alexa.com/data/details/traffic_details?q=&url=%s
gr
Search GoodReads ---------- Old implementation: Google Reader http://www.google.com/reader/view{ifEmpty -value %s -then -else /#search/%s/}
43431 uses
-
Created 2005-06-14 01:24:05
-
Last used
2026-06-09 05:50:32
-
Nominate -
Description
-
http://www.goodreads.com/search/search?search%5Bquery%5D=%s&commit.x=0&commit.y=0
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}
>
(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]
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]
mash
(Golden Egg)
Applies several commands to a single word, effectively creating an instant mashup. Examples: mash porsche gim yim flk mash antidisestablishmentarianism dic thes a encarta
22703 uses
-
Created 2006-01-28 07:07:33
-
Last used
2013-05-25 17:00:00
-
Description
-
split {url[no url encoding] {% 2 %s} {% 1 %s}} {url[no url encoding] {% 3 %s} {% 1 %s}} {ifthen -value1 0 -value2 {strlength {% 4 %s}} -test EQUAL -then -else {url[no url encoding] {% 4 %s} {% 1 %s}} } {ifthen -value1 0 -value2 {strlength {% 5 %s}} -test EQUAL -then -else {url[no url encoding] {% 5 %s} {% 1 %s}} } [no url encoding]
var
(Golden Egg)
NAME var - set and get temporary variables EXAMPLES var test -set hi sets the variable 'test' to 'hi' var test returns the contents of the variable 'test' AUTHOR Stephen Paul Weber http://singpolyma-tech.blogspot.com/
22660 uses
-
Created 2006-04-24 16:22:18
-
Last used
2026-05-08 14:58:23
-
Description
-
http://jonathanaquino.com/singpolymaplay/yubnub-var.php?xn_auth=no&var=%s&set=${set=do not set : tes ton od}
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]
splitv
(Golden Egg)
NAME splitv - displays several webpages on a single screen, arranged vertically SYNOPSIS splitv [URL] [URL] [URL] ... EXAMPLE splitv http://google.com http://yahoo.com http://answers.com splitv {url g porsche} {url y porsche} {url a porsche} AUTHOR Jonathan Aquino <jonathan.aquino@gmail.com>
21308 uses
-
Created 2005-07-22 03:49:54
-
Last used
2026-04-21 00:33:40
-
Description
-
http://yubnub.org/example/split?type=v&urls=%s
qf
19264 uses
-
Created 2012-07-30 02:14:03
-
Last used
2026-05-10 22:10:11
-
Nominate -
Description
-
http://quickfoxnotes.inbasic.net/forum/viewtopic.php?f=${f}&t=${t}
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}
kvzbsmensa
Displays the menu of the Restaurant of the KV Zurich Business School
17587 uses
-
Created 2016-04-19 05:55:13
-
Last used
2025-03-26 02:15:02
-
Nominate -
Description
-
http://kv-zurich.sv-group.ch/uploads/tx_netvsvgmenu_mbs5/27980100/{date -format Y}W{date -format U}-de_27980100.pdf
substring
NAME substring - Extract a substring of a given string SYNOPSIS substring [STRING TO PARSE] -start [START POSITION] -end [STOP POSITION] EXAMPLES % substring Hello World -start 2 -end 8 ==> ello Wo % substring Hello World -start 4 ==> lo World % substring Hello World -end 8 ==> Hello Wo % substring Hello World ==> Hello World Extracts a substring from a provided string. -start and -end are both optional. Positions are *inclusive* and begin at 1. The following illustrates the command's course of…
13496 uses
-
Created 2006-06-27 20:28:27
-
Last used
2022-07-21 02:54:24
-
Nominate -
Description
-
ifthen -value1 ${end} -value2 -test EQUAL -then { ifthen -value1 ${start} -value2 -test EQUAL -then %s -else { strRight %s {sum { strLength %s } -${start} 1 } } } -else { ifthen -value1 ${start} -value2 -test EQUAL -then { strLeft %s ${end}} -else { strRight { strLeft %s ${end} } { sum ${end} -${start} 1 }}}
threadic_last_thread
13489 uses
-
Created 2010-08-08 23:54:02
-
Last used
2011-05-12 05:54:29
-
Nominate -
Description
-
substring {scrape -tokens cgi/%s > -dirs 0 0 -url http://threadic.com/thread/bbs/read.wapl.cgi/%s/} -start 2 -end 11
threadic_post_to_last_thread
13440 uses
-
Created 2010-08-09 00:23:54
-
Last used
2011-01-07 12:27:10
-
Nominate -
Description
-
threadic_post -board ${board} -thread {threadic_last_thread ${board}} -message ${message}
fmf
Buscador de peliculas. WWW.filmaffinity.com. Creado por JJ y Pedro. Ejemplo: fmf El padrino
13295 uses
-
Created 2009-01-12 11:06:36
-
Last used
2026-06-07 00:21:05
-
Nominate -
Description
-
utf8to iso-8859-1 http://www.filmaffinity.com/es/search.php?stext=%s&stype=all
ifNotEmpty
NAME ifNotEmpty -- tests if a string is not empty ifNotEmpty [string] [-then action if not empty] [-else action if emtpy] Usage: ifNotEmpty test -then yes -else no Returns: yes ifNotEmpty -then yes -else no Returns: no NOTE: This was created as a shortcut for creating other YubNub commands using this method: http://yubnub.blogspot.com/2005/08/first-command-to-use-ifthen-command.html AUTHOR chicagosage -- using Allen Ormond's ifThen command and inspired by the "ifEmpty" command b.a.
12586 uses
-
Created 2006-02-13 16:06:16
-
Last used
2016-03-31 08:17:27
-
Nominate -
Description
-
ifThen -value1 %s -value2 -test NOTEQUAL -then ${then} -else ${else} -redirect ${redirect=false}
rand
NAME rand - display a specified number of random numbers in a specified range, courtesy of random.org SYNOPSIS rand -min <min value = 1> -max <max value = 100> -num <how many to generate = 1> EXAMPLE rand 49 rand -min 1998 -max 2005 rand -num 5 -max 20 AUTHOR Richard Frankel
12405 uses
-
Created 2005-07-19 19:36:33
-
Last used
2026-02-20 14:34:12
-
Nominate -
Description
-
http://jonathanaquino.com/random.php?num=${num=1}&min=${min=1}&max=%s${max}&col=1
superg
(Golden Egg)
NAME superg - All(most) Google searches in one command SYNOPSIS superg [KEYWORDS] -t [SEARCH TYPE] EXAMPLES superg yubnub superg yubnub -t lucky superg yubnub -t images superg is one big command that supports all of the Google Search types except for video and directory (those two were left out because their implementation would have greatly increased the complexity of the command and I'm not sure many people use them) If no -t is passed a standard Google websearch is performed. The following a…
11594 uses
-
Created 2006-08-08 00:18:04
-
Last used
2025-04-10 08:33:06
-
Description
-
http://{ifthen -value1 ${t} -value2 lucky -test EQUAL -then www -else ${t=www}}.google.com/{ifthen -value1 ${t} -value2 lucky -test EQUAL -then search -else ${t=search}}?q=%s{ifthen -value1 ${t} -value2 lucky -test EQUAL -then &btnI=I%27m+Feeling+Lucky -else}
threadic_post
11428 uses
-
Created 2010-08-09 00:21:28
-
Last used
2011-01-07 12:27:16
-
Nominate -
Description
-
http://threadic.com/thread/bbs/bbs.cgi?SelBBS=${board}&ThreadNo=${thread}&Message=${message}&session_id=&SelProc=WRITE&Name=${name=}&Mail=${mail=}[post]
ebuk
Search eBay UK or, if no parameters given, takes you to "My eBay". To search for an automatic card shuffler: Example: ebuk automatic card shuffler To visit your "My eBay" page: Example: ebuk bakert@gmail.com
10889 uses
-
Created 2006-03-07 08:05:11
-
Last used
2018-04-08 16:12:08
-
Nominate -
Description
-
http://{ifThen -value1 %s -value2 -test NOTEQUAL -then search -else my }.ebay.co.uk/%s
script
(Golden Egg)
Run javascript. example: script alert("Yubnub is cool!") b.a.
10793 uses
-
Created 2006-01-26 18:52:44
-
Last used
2026-03-05 23:18:05
-
Description
-
echo <script language="javascript">%s</script>[no url encoding]
pzgl
Proz.org Translation Term Search
10776 uses
-
Created 2009-09-07 19:05:41
-
Last used
2018-08-31 11:26:17
-
Nominate -
Description
-
http://www.proz.com/?sp=asearch&term=%s&from=${from}&to=${to}&DICengines=KudoZ&MTengines=|&SEARCHengines=|&bidir=${bidir=1}&SE_lang=0
Next Page