firefox.pod 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ##
  2. ## firefox.pod -- Mozilla Firefox Startup Control Utility (manpage)
  3. ## Copyright (c) 2000-2005 OpenPKG Foundation e.V. <http://openpkg.net/>
  4. ## Copyright (c) 2000-2005 Ralf S. Engelschall <http://engelschall.com/>
  5. ##
  6. ## Permission to use, copy, modify, and distribute this software for
  7. ## any purpose with or without fee is hereby granted, provided that
  8. ## the above copyright notice and this permission notice appear in all
  9. ## copies.
  10. ##
  11. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  12. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  13. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  14. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  15. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  16. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  17. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  18. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  19. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  20. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  21. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  22. ## SUCH DAMAGE.
  23. ##
  24. =pod
  25. =head1 NAME
  26. B<firefox> -- Mozilla Firefox Startup Control Utility
  27. =head1 SYNOPSIS
  28. B<firefox>
  29. [B<-v>|B<--verbose>]
  30. [B<-w>|B<--window>]
  31. [B<-t>|B<--tab>]
  32. [B<-r>|B<-remote>|B<--remote> I<command>]
  33. [I<url> ...]
  34. =head1 DESCRIPTION
  35. The B<firefox> command is small startup control utility for the
  36. B<Mozilla Firefox> browser (http://www.getfirefox.com/). It makes sure
  37. that no more than one B<Mozilla Firefox> instance is running at the same
  38. time and allows you to conveniently load URLs from the command line into
  39. new browser windows, new browser tabs or into the currently open browser
  40. 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 Firefox> 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