I saw a news group post this morning that was trying to do something fairly complicated with "wget". Basically he had a list of servers that he wanted to get certain files from, but for one particular server, there was one file he did NOT want to get. He didn't say why, or why he couldn't just get it and deal with skipping or removing it from his machine later, but maybe it was exceptionally large or had other undesired side effects. It doesn't matter: the heart wants what the heart wants.
Now maybe there is some switch in wget that can do this: that's not my particular interest here. Here I want to discuss how you can use shell scripts to get what you want even though some other program doesn't want to play along.
For example, our "wget" issue. Let's look at it generically; given a file "servers" that contains:
server_one server_two server_three
And a file "files" containing:
file1 file2 file3 unwanted file4
You can skip "unwanted" for server_two with a script like this:
for i in `cat servers`
do
echo -n "$i "
case $i in
server_two) echo `cat files | sed '/unwanted/d'`;;
*) echo `cat files`;;
esac
echo " "
done
When run, that produces:
server_one file1 file2 file3 unwanted file4 server_two file1 file2 file3 file4 server_three file1 file2 file3 unwanted file4
If we replace "echo" with "wget" and insert the appropriate flags, we have what we want.
Wrapping commands in shell scripts can solve difficult problems, but make sure you aren't ignoring capabilities of the command itself. For example at More reasons to love Unix/Linux, I show a shell wrapper that wants to find files NOT containing a certain pattern. That's a simple script:
grep -l "$1" *.html >~/a ls *.html > ~/b diff ~/a ~/b | sort
But even more simple (assuming your "grep" supports this switch) is:
grep -h "$1" *.html | sort -u
Often "old time" Unix folk will miss things like this because we have used "grep" and other commands for many, many years, but we haven't recently read the man pages. GNU versions of time honored Unix commands often have extended capabilities; make sure you check before you wrap.
More Articles by Anthony Lawrence - Find me on Google+
Have you tried Searching this site?
Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates
This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.
Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.
Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.
We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.
Click here to add your comments
Don't miss responses! Subscribe to Comments by RSS or by Email
Click here to add your comments
If you want a picture to show with your comment, go get a Gravatar