Skip to main content

All Questions

Tagged with
0 votes
0 answers
44 views

Retrieve all ZIPs from specific site subdirectory

I'm trying to retrieve the *.ZIP files from this Zophar.net Music section, specifically the NES console. The files are freely downloadable per each game separately, which will be a huge time sink to ...
Jeremy Hendricks's user avatar
1 vote
1 answer
79 views

Is there anyway to download linux commands from a distro's repositatory into a usb stick?

Recently, we bought a motherboard that requires everything to be the ABSOLUTE latest OS, drivers, etc or it won't run. However, we figured out how to force it into Legacy Mode to install an old Linux ...
ThN's user avatar
  • 1,278
1 vote
1 answer
1k views

Download from a redirect using wget or curl

I want to download something from https://www.articy.com/en/downloads/server/. The link I have to click to download the file is https://www.articy.com/download/articyserver3. I tried using curl -OJL ...
Deses's user avatar
  • 250
6 votes
4 answers
10k views

How does one use yt-dlp to download *only* the comments to a YouTube video, without the actual video?

After searching for such a thing for a long time, I've just discovered that yt-dlp, which I already have installed and use daily to download YouTube (and other) videos, supports fetching the user ...
J. Buranen's user avatar
0 votes
0 answers
370 views

ZScalar 'proceed' with download with wget

I am using PowerShell Invoke-WebRequest (alias wget) to download miniconda. When using the Windows 10 GUI, Zscaler will warn me, but I can still click on the "Continue" button to continue ...
Clay's user avatar
  • 561
0 votes
2 answers
1k views

Download multiple pdf files by using cmd (Windows Command Prompt)

I'm looking for a way to download multiple pdf by using a "single" command in cmd (e.g. from here). So far I learned how to download a single file by using: curl URL -o name.pdf EDIT: I'd ...
Gennaro Arguzzi's user avatar
1 vote
2 answers
5k views

How to download a single large file over sftp or http etc using multiple simultaneous connections [closed]

Is there a command line tool which supports both multiple simultaneous connections and multiple network protocols (ftp, http etc)? Here is a practical example: I have a large backup file on an ssh ...
makeyourownmaker's user avatar
3 votes
3 answers
7k views

How to use wget to download a file stored in Google Drive without making publicly shareable link of the specific file?

First make the file publicly shareable then:- I use for small files download wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O FILENAME for large files ...
sub1996's user avatar
  • 103
0 votes
0 answers
349 views

Can't get back my downloads after moving it D:\ drive

I am having the exact same problem as this person here: Win10 - Accidentally moved my downloads folder to D:\, can't seem to revert or change I accidentally made my downloads and my D:\ drive a ...
user avatar
0 votes
1 answer
6k views

Powershell Invoke-WebRequest with Method Head allocate too much RAM

Problem found on server with Powershell v 4.0 (server with Powershell 5.1 they do not seem affected by the same problem) This a strange behavior of Invoke-WebRequest command. Take this example: For ...
Max Monterumisi's user avatar
0 votes
1 answer
750 views

How do i download google browser installation without a browser using windows command line [duplicate]

I need to download and install Google Web browser without using a browser. My only option is windows command line. What are the commands I need to input to do this?
morgansbyers's user avatar
1 vote
1 answer
3k views

Can't make wget to continue downloading a file

I am trying to download a big file using wget (4.5 GB). My OS is ubuntu 18.04 LTS So what did I do? First I went to the folder, in which I want the file to be downloaded. Then I used the following ...
Metalzero2's user avatar
2 votes
1 answer
4k views

How do you download files from Github via Batch?

So, I am making an "Assistant" that is completely command line based. I recently decided to move from hosting files on One-drive to GitHub. I had made tiny.cc links so it would be easy to change the ...
user473470's user avatar
11 votes
2 answers
14k views

Firefox Download from Command Line

I want to download content from a site. Originally, I used curl/wget, however, the page demanded a session cookie + had multiple redirects. The page administrator then told me to use Firefox to ...
Syd Amerikaner's user avatar
0 votes
1 answer
662 views

How to retrieve a complete directory from a URL [duplicate]

Is there a method on Windows or Linux for downloading all files* within an online directory, specifically: http://download.opensuse.org/tumbleweed/ so I have a local repository I can work on? Any ...
Peter David Carter's user avatar
1 vote
0 answers
2k views

Download a single web page (including images from CSS)

I want to download a single web page including everything needed to view the web page locally (this includes images linked in the css). Example URL i want to download: http://www.example.com/page1 ...
2by's user avatar
  • 163
0 votes
2 answers
1k views

Tell wget to mirror the parts of an URI's path to folders

I have a list of URIs in a file uris.txt: http://example.com/file1.pdf http://example.com/file2.pdf http://example.com/Folder/file3.pdf http://example.com/Folder/Subfolder/file4.pdf The ...
ComFreek's user avatar
  • 591
4 votes
2 answers
6k views

How can I download files from shared Amazon Cloud Drive links through the command-line?

I have been using Amazon Cloud Drive (ACD) for a while now and I am very happy someone has developed a command-line-client for it (called acd_cli). It allows me to keep my files in "sync" with my ...
Chris's user avatar
  • 1,258
2 votes
0 answers
542 views

Is there a way to download wikipedia pages programmatically?

I'd like to download some Wikipedia pages as part of a program. Currently I would go to the pages on a browser, click "Download as PDF" manually, wait for it to render, then download it, then rename ...
ceiling cat's user avatar
  • 4,557
1 vote
2 answers
1k views

download file in Linux console from server that use redirection

First of all, I just don't want to change name of curl's output file. The great example is http://www.getsoloapp.com/download. When you do: curl http://www.getsoloapp.com/download you download html. ...
viron's user avatar
  • 11
0 votes
1 answer
2k views

How to auto-generate filename of PDF in wkhtmltopdf based on the page title?

I'm using the following syntax to generate PDF from URL: wkhtmltopdf http://example.com/ example.pdf Is there any way to generate filename automatically based on its page title? So I'm expecting to ...
kenorb's user avatar
  • 25.8k
0 votes
1 answer
2k views

Bitsadmin Download Error

I saw a feed referring to downloading via bitsadmin (v.7.5.7601.17514) on Windows 7. I have trouble implementing this myself and continue to get errors when running the code when running from a batch ...
Charlie's user avatar
0 votes
1 answer
229 views

Download best image or media from website on command line

I'd like a command line script, that when called with an URL, will download all images&media, or with suitable command line arguments, filter them. It is not as easy as doing a wget and grep, as ...
RipperDoc's user avatar
  • 457
-4 votes
1 answer
313 views

How to remotely download any file from the Internet? [closed]

Is it possible to download a file over VPN via the command line in Ubuntu 12.04.1?
klimat's user avatar
  • 111
0 votes
1 answer
7k views

How to download a Youtube video from command line? [duplicate]

Possible Duplicate: Download YouTube via command line How to download a Youtube video from command line? Mac OS X and/or Ubuntu Linux. Optionally, i'd like to save it in .avi or .mkv format.
qazwsx's user avatar
  • 9,039
6 votes
4 answers
6k views

download a series of files automatically using command line/wget

I have a case that I would like to trigger an automatic download for a list of 114 file (recitation) for each reader, for example if i want to download the recitations for a reader called abkr, the ...
Anas Nakawa's user avatar
10 votes
3 answers
15k views

Is there a tool that automatically downloads and compares md5sums? [closed]

What I want but can't find: $ download -url http://download.com/me.zip -md5 http://download.com/me.md5 [================================================================>] 100% md5check .... OK $ ...
erikbstack's user avatar
0 votes
1 answer
2k views

How to download a list of files with the possibility of resuming?

I have a list of URLs to some files to download. These are actual URLs ending with complete file names in the form of http://domain.com/foobar.jpg. All of those are stored in a file called urls.txt. ...
qazwsx's user avatar
  • 9,039
3 votes
3 answers
9k views

How do I extract all the external links of a web page? [duplicate]

How do I extract all the external links of a web page and save them to a file? If there is any command line tools that would be great. It was quite the same question here, and the answer worked ...
whoever's user avatar
  • 207
2 votes
1 answer
1k views

Windows command-line utility for interruptable download [duplicate]

Possible Duplicate: Persistent retrying resuming downloads with curl resume a file using curl or wget? I'm looking for a Windows command-line utility similar to curl, but that doesn't trash the ...
Ram Rachum's user avatar
  • 5,250

15 30 50 per page