mozilla.pod 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ##
  2. ## mozilla.pod -- Mozilla Browser Startup Control Utility (manpage)
  3. ## Copyright (c) 2000-2003 The OpenPKG Project <http://www.openpkg.org/>
  4. ## Copyright (c) 2000-2003 Ralf S. Engelschall <rse@engelschall.com>
  5. ## Copyright (c) 2000-2003 Cable & Wireless <http://www.cw.com/>
  6. ##
  7. ## Permission to use, copy, modify, and distribute this software for
  8. ## any purpose with or without fee is hereby granted, provided that
  9. ## the above copyright notice and this permission notice appear in all
  10. ## copies.
  11. ##
  12. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  13. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  16. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  18. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  20. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  21. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  22. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. ## SUCH DAMAGE.
  24. ##
  25. =pod
  26. =head1 NAME
  27. B<mozilla> -- Mozilla Browser Startup Control Utility
  28. =head1 SYNOPSIS
  29. B<mozilla>
  30. [B<-v>|B<--verbose>]
  31. [B<-w>|B<--window>]
  32. [B<-t>|B<--tab>]
  33. [B<-r>|B<-remote>|B<--remote> I<command>]
  34. [I<url> ...]
  35. =head1 DESCRIPTION
  36. The B<mozilla> command is small startup control utility for the
  37. B<Mozilla> browser (http://www.mozilla.org/). It makes sure that no more
  38. than one B<Mozilla> instance is running at the same time and allows
  39. you to conviniently load URLs from the command line into new browser
  40. windows, new browser tabs or into the currently open browser view.
  41. The following command line options are recognized:
  42. =over 4
  43. =item B<-v>, B<--verbose>
  44. Displays verbose messages on F<stderr> while performing the
  45. B<Mozilla> control actions.
  46. =item B<-w>, B<--window>
  47. Opens the URL(s) into new browser windows.
  48. =item B<-t>, B<--tab>
  49. Opens the URL(s) into new browser tabs.
  50. =item B<-r>, B<-remote>, B<--remote> I<command>
  51. This is for compatibility with the lower level C<mozilla>
  52. executable. It just passes through the options I<command>.
  53. =back
  54. The following URL(s) are recognized on the command line:
  55. =over 4
  56. =item C<http://>..., C<https://...>, C<ftp://>...
  57. Fully qualified URLs are passed through as-is.
  58. =item C<google:>I<wordlist>
  59. Expands into a Google (http://www.google.com/) query URL for the given
  60. I<wordlist>.
  61. =item C<leo:>I<wordlist>
  62. Expands into a Leo English/German Dictionary (http://dict.leo.org/)
  63. query URL for the given I<wordlist>.
  64. =item C<ftpsearch:>I<wordlist>
  65. Expands into an AllTheWeb FTPSearch (http://www.alltheweb.com/) query URL for the given
  66. I<wordlist>.
  67. =item C<rfc:>I<number>
  68. Expands into a Zvon RFC retrival URL (http://zvon.org/) for the given
  69. RFC I<number>.
  70. =item C<whois:>I<domain>
  71. Expands into a Geektools WHOIS query (http://www.geektools.com/) query URL
  72. for the given I<domain>.
  73. =item C</>I<path>, I<path>
  74. Expands the absolute or relative Unix filesystem I<path> into a fully
  75. qualified C<file> scheme URL.
  76. =item C<auto:>...
  77. Trys to autodetect the query.
  78. =back
  79. Additionally any URL argument can contain an at-sign ("C<@>"), which
  80. is replaced with the current contents of the X11 selection buffer.
  81. =head1 SEE ALSO
  82. http://www.mozilla.org/unix/remote.html
  83. =head1 HISTORY
  84. This utility was written in November 2002 by B<Ralf S. Engelschall>
  85. E<lt>rse@engelschall.comE<gt> for use with the B<OpenPKG> I<mozilla>
  86. package.
  87. =cut