in Education by
I'm trying to download a collection of files, but the instructions are for the command line in Unix. Essentially, I have a .txt file that's a very long list of wget commands, each is pretty much wget -U Mozilla/5.0 --no-check-certificate https://some-url.com with a different url. It says to execute the following in the command line chmod a+x filename.txt Execute: ./filename.txt However, nothing has been working because I'm working in Windows. Is there any way to download these files from this .txt file, or run the wget commands in Windows? Thanks! JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
You can get wget for Windows here. In Windows PowerShell, wget is an alias for Invoke-WebRequest, which won't take the same options as "real" wget. However, once you have a wget.exe for windows, you could do something like the following: Set-Alias wget wget.exe -Force -Option AllScope # point 'wget' at the real 'wget.exe' copy ./filename.txt ./filename.ps1 . ./filename.ps1 # <-- "dot source" operator But if each line in the file really is just a wget command line... you could also just use cmd just as well. copy ./filename.txt ./filename.cmd cmd.exe /c ./filename.cmd

Related questions

0 votes
    What about the PowerShell setting “AllowAdHocSubscriptions?” How is this related?...
asked Mar 10, 2021 in Technology by JackTerrance
0 votes
    Which of this package is used for analyzing code during run-time? (a) java.applet (b) java.awt (c) ... Interfaces & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of this package is used for analyzing code during run-time? (a) java.applet (b) java.awt ( ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 24, 2021 in Education by JackTerrance
0 votes
    Whenever we get a new release of code from our vendor, we need to perform basic tests to ensure ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 11, 2022 in Education by JackTerrance
0 votes
    How do I use Perl to create graphs? I'm running scheduled job that creates text reports. I'd like ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 27, 2022 in Education by JackTerrance
0 votes
    How do I use Perl to create graphs? I'm running scheduled job that creates text reports. I'd like ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 27, 2022 in Education by JackTerrance
0 votes
    How do I use Perl to create graphs? I'm running scheduled job that creates text reports. I'd like ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 27, 2022 in Education by JackTerrance
0 votes
    How do I use Perl to create graphs? I'm running scheduled job that creates text reports. I'd like ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 27, 2022 in Education by JackTerrance
0 votes
    I read that pip is a replacement for easy_install, Can anyone tell me, How can I install pip using ... another better option? Select the correct answer from above options...
asked Jan 21, 2022 in Education by JackTerrance
0 votes
    I have a Maven build of a Java application that runs successfully on either Linux or Windows by typing the ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 10, 2022 in Education by JackTerrance
0 votes
    io 3. When you switch on the computer, the Windows OS gets loaded onto the computer's memory, this process is ... (d) None of these Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    I am currently exploring powershell. I like the way I can mount everything, for example the registry, so ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I want to include a batch file rename functionality in my application. A user can type a destination ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 29, 2022 in Education by JackTerrance
0 votes
    I'm still trying to understand this piece of code that I found in a project I'm working on where ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 20, 2022 in Education by JackTerrance
0 votes
    I'm still trying to understand this piece of code that I found in a project I'm working on where ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
...