Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

linuxdcpp(1) [debian man page]

LINUXDCPP(1)						      General Commands Manual						      LINUXDCPP(1)

NAME
LinuxDC++ - File-sharing client for the Direct Connect network SYNOPSIS
linuxdcpp [OPTION...] [URI...] DESCRIPTION
LinuxDC++ is a Direct Connect client based on DC++. Utilizing the latest DC++ core, LinuxDC++ offers similar functionality to the Windows client like segmented downloading, TTH based file integrity, etc. with a GTK+ user interface. LinuxDC++ is free and open source software licensed under the GPL. Direct Connect (DC) is a peer-to-peer (P2P) file-sharing protocol. Clients connect to a central hub where they can chat or share files with one another. Users can view other users' list of shared files or search the hub for files. OPTIONS
URI A list of URIs to load on startup. LinuxDC++ supports the following types of URIs: magnet:?xt=urn:tree:tiger:[TTH]&xl=[filesize]&dn=[filename] Magnet URI for a shared file. Handled the same as -a, --add-magnet adc://[hostname]:[port] ADC hub URI. Handled the same as -c, --connect adcs://[hostname]:[port] Secure ADC hub URI. Handled the same as -c, --connect dchub://[hostname]:[port] NMDC hub URI. Handled the same as -c, --connect -a, --add-magnet=URI Attempt to add the magnet link directly to the download queue -c, --connect=URI Connect to the given hub -e, --existing Send commands to the existing instance (if applicable) -h, --help Show help options -m, --search-magnet=URI Search for the given magnet link -r, --refresh Initiate filelist refresh -s, --show Show the running instance (default action) -v, --version Show version information and exit SEE ALSO
Homepage: https://launchpad.net/linuxdcpp AUTHOR
linuxdcpp is copyright Jens Oknelid <paskharen@gmail.com>. This manual page was written by the LinuxDC++ Team <linuxdcpp-team@lists.launchpad.net>. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foun- dation October 21, 2009 LINUXDCPP(1)

Check Out this Related Man Page

Regexp::Common::URI::news(3)				User Contributed Perl Documentation			      Regexp::Common::URI::news(3)

NAME
Regexp::Common::URI::news -- Returns a pattern for file URIs. SYNOPSIS
use Regexp::Common qw /URI/; while (<>) { /$RE{URI}{news}/ and print "Contains a news URI. "; } DESCRIPTION
$RE{URI}{news} Returns a pattern that matches news URIs, as defined by RFC 1738. News URIs have the form: "news:" ( "*" | group | article "@" host ) Under "{-keep}", the following are returned: $1 The complete URI. $2 The scheme. $3 The part of the URI following "news://". $RE{URI}{NNTP} Returns a pattern that matches NNTP URIs, as defined by RFC 1738. NNTP URIs have the form: "nntp://" host [ ":" port ] "/" group [ "/" digits ] Under "{-keep}", the following are returned: $1 The complete URI. $2 The scheme. $3 The part of the URI following "nntp://". $4 The host and port, separated by a colon. If no port was given, just the host. $5 The host. $6 The port, if given. $7 The group. $8 The digits, if given. REFERENCES
[RFC 1738] Berners-Lee, Tim, Masinter, L., McCahill, M.: Uniform Resource Locators (URL). December 1994. SEE ALSO
Regexp::Common::URI for other supported URIs. AUTHOR
Damian Conway (damian@conway.org) MAINTAINANCE
This package is maintained by Abigail (regexp-common@abigail.be). BUGS AND IRRITATIONS
Bound to be plenty. LICENSE and COPYRIGHT This software is Copyright (c) 2001 - 2009, Damian Conway and Abigail. This module is free software, and maybe used under any of the following licenses: 1) The Perl Artistic License. See the file COPYRIGHT.AL. 2) The Perl Artistic License 2.0. See the file COPYRIGHT.AL2. 3) The BSD Licence. See the file COPYRIGHT.BSD. 4) The MIT Licence. See the file COPYRIGHT.MIT. perl v5.18.2 2013-03-08 Regexp::Common::URI::news(3)
Man Page