Re: Changing "From:" in sendmail header
From: Alan Connor (zzzzzz_at_xxx.yyy)
Date: 12/29/04
- Next message: Sparky: "Help Downloading ksh93"
- Previous message: Kevin Collins: "Re: Obtaining IP address"
- In reply to: Ed Morton: "Re: Changing "From:" in sendmail header"
- Next in thread: rsine: "Re: Changing "From:" in sendmail header"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 29 Dec 2004 20:23:40 GMT
On Wed, 29 Dec 2004 13:54:21 -0600, Ed Morton
<morton@lsupcaemnt.com> wrote:
> rsine wrote:
>
>> Dana,
>>
>> I tried "man formail" and got the following: There is not an
>> entry for formail.
>>
>> We are using AIX ver 4.3.
>>
>
> man google ;-)
:-)
You know, Ed, all joking aside, a google manpage isn't a bad idea
at all.
Knowing how to use google well is one of the 'secrets' of any
nix expert.
I use all sorts of scripts (wget) to retrieve search results
from google.com & groups.google.com.
For example:
#!/bin/sh
clear
echo; echo; echo;
if [ -s ./goog.html ] ; then w3m ./goog.html ; else
echo
echo
echo "Ctrl-c to exit"
echo
echo
echo "enter your google search string here:"
echo; echo
read ss
echo
echo
echo
wget -U msie -O ./goog.html \
"http://www.google.com/search?&q=${ss}&num=100&hl=en" \
&& w3m ./goog.html &&
echo "If you want to rm goog.html enter r - to mv enter m"
echo
read AA
echo
case "$AA" in
r) rm ./goog.html ;;
m) echo; echo "enter new name/path sans .html" ;echo ; \
read NM ; echo ;\
mv ./goog.html "${NM}".html ;;
*) echo "try again" ; sleep 2 ; return ;;
esac
fi
exit 0
It could begin with the search tips found on this page:
http://www.google.com/help/refinesearch.html
(edited by someone with real expertise)
AC
- Next message: Sparky: "Help Downloading ksh93"
- Previous message: Kevin Collins: "Re: Obtaining IP address"
- In reply to: Ed Morton: "Re: Changing "From:" in sendmail header"
- Next in thread: rsine: "Re: Changing "From:" in sendmail header"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|