DIFFINDEX-DOWNLOAD(1)DIFFINDEX-DOWNLOAD(1)NAME
diffindex-download - Download utility for Debian Contents files
SYNOPSIS
diffindex-download [ options ] URL filename
DESCRIPTION
diffindex-download is a command line tool for downloading Contents files. It uses APT's diff/Index format patches when available to avoid
downloading the full file. diffindex-download is used by apt-file.
OPTIONS -n number
If more than number patches would be necessary, download the whole file. Specifying 0 to always download the whole file is possible.
-k Don't verify the peer certificate when using https.
-c cacert
If cacert is a directory: Use cacert as CA certificate path. Otherwise use cacert as CA certificate bundle. See the --capath and
--cacert options in the curl(1) man page.
-i Don't exit with errror if the URL does not exist. This is useful as some archives don't provide Contents files.
-q Be quiet (opposite of -v). The default if stdout is not a terminal.
-v Be verbose (opposite of -q). The default if stdout is a terminal.
-d Print additional debug info.
-h Display a short help screen.
SEE ALSO apt-file(1), diffindex-rred(1), curl(1)AUTHOR
diffindex-download was written by Stefan Fritsch <sf@debian.org>.
January 2009 DIFFINDEX-DOWNLOAD(1)
Check Out this Related Man Page
NETDISCO-MIBS-DOWNLOAD(1) User Contributed Perl Documentation NETDISCO-MIBS-DOWNLOAD(1)NAME
netdisco-mibs-download - Downloader for the Netdisco MIB bundle
VERSION
This document refers to version 1.0700 of netdisco-mibs-download
DESCRIPTION
Run this program to download the Netdisco MIB files bundle from Sourceforge. If the download is successful, you can run the netdisco-mibs-
install program to unpack and install them.
If the download fails, you can visit the Netdisco Sourceforge downloads page, details of which are given by this program on failure, and
get the bundle yourself.
ENVIRONMENT
Setting the environment variable "MIBS_DEBUG" to a true value will display information about failed mirror site downloads.
EXIT CODES
0 - Successful download
1 - Failed download, possibly no available mirror
2 - Program must be run as root, and you are not root
3 - Error regarding the download directory
AUTHOR
Oliver Gorwits "<oliver@cpan.org>"
COPYRIGHT & LICENSE
Copyright (c) The University of Oxford 2007. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
perl v5.14.2 2012-08-15 NETDISCO-MIBS-DOWNLOAD(1)
i know by posting this people are going to get mad at me but, when i try to download unix for my Windows XP i find a whole bunch of files that i dont know what to do with, so please help, sorry if this has already been posted... or is a stupid question :o (9 Replies)
Hi peeps,
I have a teenage lad who needs to learn some discipline with internet access etc. etc. My main problem is that he is downloading so much that he is using more than his fair share. What I'd like to do is set a download quota for him so that he can learn what this all means. Can... (10 Replies)
Hello everyone,
I currently have a situation which is causing me some issues for keeping up with certain files. I will explain this to the best of my abilities.
I have a list of files as follows
50_REPORT_1111 - file contains the word Car
50_REPORT_2222 - file contains the word House... (15 Replies)
Hi,
whenever i try to download SP's/TL's using SUMA on my blade aix 5.3 p6 server, i get this error message each time.
0500-013 Failed to retrieve list from fix server.
Do i need to change SUMA settings?
currently it is configured as:
Screen output verbosity ... (9 Replies)
Hello experts,
I have written following script to download files which created today.
Unfortunately, it's not working.
test.ksh:
#Defining variables
USR='xxx'
PASSWD='yyyy'
HT='test.test.com'
FILE='S*.pdf'
XFILE=$(echo find . -type f -mtime 0)
ZFILE=$(echo ls -tR|grep 'Jun 8')... (14 Replies)
All,
I'm baffled by some sort behavior on SunOS 5.10 and looking for guidance.
Running the command:
sort -t'|' -k5,5 -k7,7 -k1,1 -k2,2 -k3,3 -k6,6 -k8,8 test
Against the file "test":
thirdA||||first||second|Data
thirdB||||first||second|
thirdC||||first||second|Data... (11 Replies)
Hi there,
I've got my own domain, ftp etc.. I'm using cPanel and I want to download a file periodically, every say 24 hours.
I've used this command:
wget -t inf http : / / www . somesite . com / webcam.jpg
ftp : / / i @ MyDomain . net : Password @ ftp . MyDomain . net^no spaces... (24 Replies)
Im trying to download a file from a website.
But i want to download only if the file version is latest than the same file I have.
The file name is CTP-LATEST-5.3.0.37.iso
I need to check the string "37" in the file name.
So if the number 37 is greater than the version Im already... (14 Replies)
Need assistance
I have a script which i can download the files from ftp server using perl . But i want to download multiple files at a time
#!/usr/bin/perl -w
use Net::FTP;
$ftp = Net::FTP->new("ftp.ncdc.noaa.gov");
$ftp->login('username', 'password');
$ftp->cwd("<dir>");... (9 Replies)
hello i have writing a shell script to download and run some packages
the only way that i use to verify download pack is , limit users ip to download from main server, if wget can download file (verified) then script run by execute it sh pack76.sh
else show and error
(stupid solution ha?)
... (8 Replies)
Hi,
I want to run putty.exe in Solaris server.My main aim is to invoke the putty.exe in Solaris server from a web application(.jsp) deployed in the server so that putty terminal should open.
Thanks in advance (11 Replies)
Ggod evening.
I need your help please, in a Production system there is a process that download a xls file from an URL which is IMF(International Monetary Fund) and afterwards to be loaded into a databse table.
When testing conectivity from a unix server to IMF seems to work but when editing it... (9 Replies)
Hello,
My question is about curl command. (ubuntu14.04)
In terminal, I am able to download my mainfile with:
curl -u user1:pass1 http://11.22.33.44/*******
When I convert it into bash script like this:
#!/bin/bash
cd /root/scripts
computer_ip=11.22.33.44
curl -u $1:$2... (8 Replies)
This works so I do not have to manually hit my sleep button.
Is there a way to make it not run if a download is occuring? (Using my browser)
#!/bin/bash
#
# Suspend computer if no mouse/keyboard activity for 10 minutes
#
# The time is in milliseconds !! 3000 = 3 seconds
# 1 minute = 1000... (15 Replies)