Sponsored Content
Full Discussion: Download the file
Top Forums Shell Programming and Scripting Download the file Post 302614145 by CarloM on Wednesday 28th of March 2012 09:40:40 AM
Old 03-28-2012
Try mget rather than get.
This User Gave Thanks to CarloM For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Using wget to download a file

Hello Everyone, I'm trying to use wget recursively to download a file. Only html files are being downloaded, instead of the target file. I'm trying this for the first time, here's what I've tried: wget -r -O jdk.bin... (4 Replies)
Discussion started by: thoughts
4 Replies

2. Shell Programming and Scripting

download a particular file using wget

Hi All I want to download srs8.3.0.1.standard.linux24_EM64T.tar.gz file from the following website : http://downloads.biowisdomsrs.com/srs83_dist/ But this website contains lots of zipped files I want to download the above file only discarding other zipped files. When I am trying the... (1 Reply)
Discussion started by: alphasahoo
1 Replies

3. UNIX and Linux Applications

download file using wget

I need to download the following srs8.3.0.1.standard.linux26_32.tar.gz file from the following website: http://downloads.biowisdomsrs.com/srs83_dist There are many gzip files along with the above one in the above site but I want to download the srs8.3.0.1.standard.linux26_32.tar.gz only from... (1 Reply)
Discussion started by: alphasahoo
1 Replies

4. Shell Programming and Scripting

Not able to download the file

Dear Experts, I m using the Solaris operating system and WebSphere as application server. I want to download xml file using following url http://XXX.XXX.XXX.XXX:9080/wasPerfTool/servlet/perfservlet?server=XYZ And the download file should saved into file. Can anyone... (3 Replies)
Discussion started by: naree
3 Replies

5. Ubuntu

Help with locating a file (to download)

debian_base_system.tar.bz2 is what I am looking for. Hello All; I am trying to learn Linux and have done some work, now I am installing Xen virtual machine But I need a .tar.bz2 file which is the base Operating System (for Ubuntu or Debian)* but I do not know where to download it from, the... (2 Replies)
Discussion started by: Matey
2 Replies

6. UNIX for Dummies Questions & Answers

download di file di testo

Hi everybody, I'm new on this forum and I hope to use it correctly. My question is: I have to download from a bash script the text file at the following page: opm.phar.umich.edu/subunits.php How can I do it? The wget function downloads the html code, while I want to get the text file only. Does... (1 Reply)
Discussion started by: valei
1 Replies

7. Shell Programming and Scripting

Script for download file with version

Hi, Need Shell script to download the file with version or date from internet Filename will be as Eg:File-2.3.1.zip Filename will keep on changing for every 4months as File-2.3.2 or File 2.4 Thanks, Anil (4 Replies)
Discussion started by: Anil2312
4 Replies

8. Shell Programming and Scripting

FTP File download

Hi, I have few files at FTP location and have written a script to download the same from ftp based on the sysdate - 1, however with the below code I am unable to download the files from FTP. x=`TZ=CST+24 date +%Y%m%d` mget Daily_BIH_$x_NEW.tar.gz can anyone please help me in... (10 Replies)
Discussion started by: rramkrishnas
10 Replies

9. Shell Programming and Scripting

File Download from Sharepoint folder

Hi All, Please let me know the simple script to download the latest .xlsx file from the share point folder. I am using the CURL command and which is working fine if give the particular file name. But I have the list of files with the timestamp.' Ex : Filename_07202017.xlsx... (4 Replies)
Discussion started by: puttaiah
4 Replies

10. Shell Programming and Scripting

Curl to download file from subdivx.com after following location without knowing the file name/extens

This question could be specific to the site subdivx.com In the past, I've been able to download a file following location using cURL but there is something about subdivx.com that's different and can't figure out how to get it to work. I tried the following directly in the terminal with no... (5 Replies)
Discussion started by: MoonD
5 Replies
DEBSNAP(1)                                                      DebSnap User Manual                                                     DEBSNAP(1)

NAME
debsnap - retrieve old snapshots of Debian packages SYNOPSIS
debsnap [options] package [version] debsnap [-h | --help] [--version] DESCRIPTION
debsnap is a tool to help with retrieving snapshots of old packages from a daily archive repository. The only publicly available snapshot archive is currently located at http://snapshot.debian.org By default, debsnap will download all the available versions for package that are found in the snapshot archive. If a version is speci- fied, only that particular version will be downloaded, if available. OPTIONS
The following options are available: -d destination, --destdir destination Directory to place retrieved packages. -f, --force Force writing into an existing destination. By default debsnap will insist the destination directory does not exist yet unless it is explicitly specified to be '.' (the current working directory). This is to avoid files being accidentally overwritten by what is fetched from the archive and to provide a guarantee for other scripts that only the files fetched will be present there upon comple- tion. -v, --verbose Report on the debsnap configuration being used and progress during the download operation. Please always use this option when reporting bugs. --binary Download binary packages instead of source packages. -a, --architecture Specify architecture of downloaded binary packages. Implies --binary. This can be given multiple times in order to download binary packages for multiple architectures. -h, --help Show a summary of these options. --version Show the version of debsnap. CONFIGURATION OPTIONS
debsnap may also be configured through the use of the following options in the devscripts configuration files: DEBSNAP_VERBOSE Same as the command line option --verbose. Set to yes to enable. DEBSNAP_DESTDIR Set a default path for the destination directory. If unset ./source-<package_name> will be used. The command line option --destdir will override this. DEBSNAP_BASE_URL The base url for the snapshots archive. If unset this defaults to http://snapshot.debian.org EXIT STATUS
debsnap will return an exit status of 0 if all operations succeeded, 1 if a fatal error occurred, and 2 if some packages failed to be down- loaded but operations otherwise succeeded as expected. In some cases packages may fail to be downloaded because they are no longer avail- able on the snapshot mirror, so any caller should expect this may occur in normal use. EXAMPLES
debsnap -a amd64 xterm 256-1 Download the binary package of specific a xterm version for amd64 architecture. debsnap -a armel xterm Download binary packages for all versions of xterm for armel architecture. debsnap --binary xterm 256-1 Download binary packages for a specific a xterm version but for all architectures. debsnap --binary xterm Download binary packages for all version of xterm version for all architectures. aptitude search '~i' -F '%p %V' | while read pkg ver; do debsnap -a $(dpkg-architecture -qDEB_HOST_ARCH) -a all $pkg $ver; done Download binary packages of all packages that are installed on the system. FILES
/etc/devscripts.conf Global devscripts configuration options. Will override hardcoded defaults. ~/.devscripts Per-user configuration options. Will override any global configuration. SEE ALSO
devscripts(1), devscripts.conf(5), git-debimport(1) AUTHORS
David Paleino <dapal@debian.org> COPYRIGHT
Copyright (C) 2010 David Paleino Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or (at your option) any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. BUGS
Reporting bugs The program is part of the devscripts package. Please report bugs using `reportbug devscripts` Debian devscripts July 3, 2010 DEBSNAP(1)
All times are GMT -4. The time now is 01:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy