1urlview(1) General Commands Manual urlview(1)
2
3
4
6 urlview - URL extractor/launcher
7
9 urlview filename [ filename ... ]
10
12 urlview is a screen oriented program for extracting URLs from text
13 files and displaying a menu from which you may launch a command to view
14 a specific item.
15
17 urlview attempts to read ~/.urlview upon startup. If this file doesn't
18 exist, it will try to read a system wide file in /etc/urlview.conf.
19 There are two configuration commands (order does not matter):
20
21 REGEXP regexp
22 urlview uses a regular expression to extract URLs from the spec‐
23 ified text files. \r, \t, \n and \f are all converted to their
24 normal printf(3) meanings. The default REGEXP is:
25
26 (((https?|ftp|gopher)://|(mailto|file|news):)[^' <>"]+|(www|web|w3).[-a-z0-9.]+)[^' .,;<>":]
27
28
29 COMMAND command
30 If the specified command contains a %s, it will be subsituted
31 with the URL that was requested, otherwise the URL is appended
32 to the COMMAND string. The default COMMAND is:
33
34 url_handler.sh %s
35
36 Note: You should never put single quotes around the %s. urlview does
37 this for you, and also makes sure that single quotes eventually showing
38 up inside the URL are handled properly. (Note that this shouldn't hap‐
39 pen with the default regular expression, which explicitly excludes sin‐
40 gle quotes.)
41
43 /etc/urlview.conf
44 system-wide urlview configuration file
45
46 ~/.urlview
47 urlview configuration file
48
50 printf(3), regcomp(3), regex(7)
51
53 Michael Elkins <me@cs.hmc.edu>.
54
55 Modified for Debian by Luis Francisco Gonzalez <luisgh@debian.org>.
56
57 Modified for SuSE by Dr. Werner Fink <werner@suse.de> and Stepan Kasal
58 <kasal@suse.cz>.
59
60 Changes put together by Thomas Roessler <roessler@does-not-exist.org>.
61
62
63
64
65 urlview(1)