firefox.pod 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. ##
  2. ## firefox.pod -- Mozilla Firefox 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<firefox> -- Mozilla Firefox Startup Control Utility
  28. =head1 SYNOPSIS
  29. B<firefox>
  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<firefox> command is small startup control utility for the
  37. B<Mozilla Firefox> browser (http://www.mozilla.org/). It makes sure that
  38. no more than one B<Mozilla Firefox> instance is running at the same time
  39. and allows you to conviniently load URLs from the command line into new
  40. browser windows, new browser tabs or into the currently open browser
  41. view.
  42. The following command line options are recognized:
  43. =over 4
  44. =item B<-v>, B<--verbose>
  45. Displays verbose messages on F<stderr> while performing the
  46. B<Mozilla Firefox> control actions.
  47. =item B<-w>, B<--window>
  48. Opens the URL(s) into new browser windows.
  49. =item B<-t>, B<--tab>
  50. Opens the URL(s) into new browser tabs.
  51. =item B<-r>, B<-remote>, B<--remote> I<command>
  52. This is for compatibility with the lower level C<mozilla>
  53. executable. It just passes through the options I<command>.
  54. =back
  55. The following URL(s) are recognized on the command line:
  56. =over 4
  57. =item C<http://>..., C<https://...>, C<ftp://>...
  58. Fully qualified URLs are passed through as-is.
  59. =item C<google:>I<wordlist>
  60. Expands into a Google (http://www.google.com/) query URL for the given
  61. I<wordlist>.
  62. =item C<leo:>I<wordlist>
  63. Expands into a Leo English/German Dictionary (http://dict.leo.org/)
  64. query URL for the given I<wordlist>.
  65. =item C<ftpsearch:>I<wordlist>
  66. Expands into an AllTheWeb FTPSearch (http://www.alltheweb.com/) query URL for the given
  67. I<wordlist>.
  68. =item C<rfc:>I<number>
  69. Expands into a Zvon RFC retrival URL (http://zvon.org/) for the given
  70. RFC I<number>.
  71. =item C<whois:>I<domain>
  72. Expands into a Geektools WHOIS query (http://www.geektools.com/) query URL
  73. for the given I<domain>.
  74. =item C</>I<path>, I<path>
  75. Expands the absolute or relative Unix filesystem I<path> into a fully
  76. qualified C<file> scheme URL.
  77. =item C<auto:>...
  78. Trys to autodetect the query.
  79. =back
  80. Additionally any URL argument can contain an at-sign ("C<@>"), which
  81. is replaced with the current contents of the X11 selection buffer.
  82. =head1 SEE ALSO
  83. http://www.mozilla.org/unix/remote.html
  84. =head1 HISTORY
  85. This utility was written in November 2002 by B<Ralf S. Engelschall>
  86. E<lt>rse@engelschall.comE<gt> for use with the B<OpenPKG> I<mozilla>
  87. package.
  88. =cut