Search Results

Search: Posts Made By: vanessafan99
5,326
Posted By Corona688
If it's saving index.html, you forgot the...
If it's saving index.html, you forgot the --spider.

You can feed wget a list of URL's with awk '{...}' | wget -I - ...
5,326
Posted By Corona688
If you can get a list of directories, you can...
If you can get a list of directories, you can feed that into wget with the --no-parent option.
5,326
Posted By Corona688
You put exactly what I said, -I - The -...
You put exactly what I said, -I -

The - tells it to read from stdin.
5,326
Posted By Corona688
It means exactly what it says: .listing is not...
It means exactly what it says: .listing is not there. Probably you didn't run the first command, or ran it in a different directory.

You forgot the -I - on the last command, also. I'd also...
5,326
Posted By Corona688
Show exactly what you are doing, word for word,...
Show exactly what you are doing, word for word, letter for letter, keystroke for keystroke.
5,326
Posted By Corona688
Show exactly what you are doing.
Show exactly what you are doing.
5,326
Posted By Corona688
Should be -i instead of -I, my mistake.
Should be -i instead of -I, my mistake.
5,326
Posted By Corona688
So? Get the listing and use it. # Retrieve...
So? Get the listing and use it.

# Retrieve .listing file
wget --spider --no-remove-listing ftp://user:pass@wherever
# Extract the useful directories from it
awk '{ sub(/\r/, ""); }
/^d/ &&...
1,963
Posted By RudiC
Maybe
Maybe
6,280
Posted By otheus
Just need a little more info... what shell-tool...
Just need a little more info... what shell-tool or programming language are you intending to use for this?
5,700
Posted By mirni
Oops, please disregard my previous post. I spaced...
Oops, please disregard my previous post. I spaced out -- using quotes in the for loop would treat the whole output of find as one thing: the loop would run only once, and it would contain everything....
5,700
Posted By mirni
EDIT: Please read on. There is nothing useful in...
EDIT: Please read on. There is nothing useful in this post...
5,700
Posted By Scrutinizer
Try a construction like: find wp-content/themes...
Try a construction like:
find wp-content/themes -type f |
while read i
do
... "$i"
done
4,597
Posted By neutronscott
Why the extra quoting? Your input to mysql...
Why the extra quoting?
Your input to mysql would be for example

UPDATE db.prefix_"config" SET value = WHERE "prefix_"config.name = 'table colname';


I suppose the problem is getting...
2,009
Posted By Scrutinizer
What do you mean with pasting? Are you...
What do you mean with pasting? Are you copy-pasting while editing a file? In what editor?
1,178
Posted By chihung
What you can do is to use Firefox's Live HTTP...
What you can do is to use Firefox's Live HTTP Headers (https://addons.mozilla.org/en-US/firefox/addon/live-http-headers/) to capture a typical user login session. With that, you can loop through all...
2,009
Posted By Habitual
echo \<\< > file.sh
echo \<\< > file.sh
3,391
Posted By Scrutinizer
echo "${fulldirectory#/*/*/*/}"
echo "${fulldirectory#/*/*/*/}"
3,391
Posted By Skaperen
echo $fulldirectory | cut -d / -f 4-
echo $fulldirectory | cut -d / -f 4-
Showing results 1 to 19 of 19

 
All times are GMT -4. The time now is 06:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy