Mike <[EMAIL PROTECTED]> writes: > a. Get files of a certain type from an http directory, > ie. From say http://www.domain.com/subdir1/subdir2 > the files *.txt and no other files,
wget -A "*.txt" -r -l 1 http://www.domain.com/subdir1/subdir2/ > b. Put these in the current directory I am in without > creating a mirror on my system of the dirs I am looking at The above plus "-nd".
