What is the -X flag mean in wget? [closed] - wget

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 months ago.
Improve this question
In the documentation it says:
-X list
But what does it actually mean, when i call.
wget -X GET https://www.google.com
Can anybody explain please?

From the man page:
-X list
--exclude-directories=list
Specify a comma-separated list of directories you wish to exclude from download. Elements of list may contain wildcards.

Related

IBM Iseries security questions [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I am new to Iseries, my manager is off today. Someone asked me for a list of users that have access to certain programs.
I google and I am not even sure what to ask for in my search. Is there a command I can use that if I specify the module/program name it will return list of users who have access? and also a list of which access templates include these programs?
Display Object Authority command, DSPOBJAUT

What is the difference between sqldeveloper.exe and sqldeveloperW.exe? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
My antivirus blocking sqldeveloperw.exe and allowing sqldeveper.exe. I want to know the difference between these.
One prints debug info to the console when you run it (sqldeveloperw.exe) and one doesn't (sqldeveloper.exe)
You should always run the sqldeveloper.exe in the base directory unless instructed otherwise by support/R&D to run something out of the bin directory for debugging purposes.

How do I install gifsicle? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 months ago.
Improve this question
I need a solution to create and edit gifs quickly. I found gifsicle to be a very good solution. The problem is that the program is very difficult to install. The github page for the software can be found at this link
For linux... Assuming you have build-essentials installed, it's pretty quick to install.
curl -sL http://www.lcdf.org/gifsicle/gifsicle-1.91.tar.gz | tar -zx
cd gifsicle-1.91
./configure --disable-gifview
make install

What is the use of -i with curl command [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Used to check if the index (indices) exists or not. For example:
curl -XHEAD -i 'http://localhost:9200/twitter'
The HTTP status code indicates if the index exists or not. A 404 means it does not exist, and 200 means it does.
What is the use of -i option in above example?
This is related to cURL, I suppose. So it means it should be written in documentation:
Different protocols provide different ways of getting detailed
information about specific files/documents. To get curl to show
detailed information about a single file, you should use -I/--head
option. It displays all available info on a single file for HTTP and
FTP. The HTTP information is a lot more extensive.
Or alternatively in here:
-i, --include
(HTTP) Include the HTTP-header in the output. The HTTP-header includes
things like server-name, date of the document, HTTP-version and
more...

Perl: Changing the name of files [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
Everyday the following files appear in my computer (one per day, inside /my/dir/):
stackoverflow.20130712_0.log
stackoverflow.20130713_0.log
I want to change their name to stackoverflow.20130712 and stackoverflow.20130713, that is, erase the "_0.log" part everyday with a cron job.
A module or script you would recommend me?
I'm on CentOS
You can get the rename script from CPAN:
http://search.cpan.org/perldoc?rename
Then you can do:
rename 's/_0.log$//' stackoverflow*_0.log
No dependencies solution,
perl -e 'for (#ARGV){ $t=$_; s|_0[.]log$||; rename($t,$_) }' stackoverflow.*