how to write script to change email address


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to write script to change email address
# 1  
Old 05-11-2011
how to write script to change email address

we have 4000 html pages that need an email address changed.

eg) company@yahoo.com to company@hotmail.com

we only want the file modified date to be changed when there has been a change to the file.

Should I be using grep?

I fairly new to UNIX and was told to using something like this

Code:
find /qlinx/common/quicklinks/docs/700_799/ -name "*.htm" -type f | \
xargs perl -pi -e 's/\/company-information\/legal-and-regulatory/\/legal-and-regulatory/g'

however this changes the file modified date weather or not information was change

Last edited by pludi; 05-11-2011 at 06:39 PM..
# 2  
Old 05-11-2011
Please define what constitutes a "change to the file" and precisely how you detect this change? In general "change" needs a timebase.
# 3  
Old 05-11-2011
the script will have to check each html page to see if it has the email address that needs to be replaced with the new email address. However, I do not want the file modified date to change unless the email address has been changed to the new address.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to write a value to a physical memory address in bash script?

How would I write a value to a physical memory address? I was able to read a physical memory address (for example, 0x400) using this line: dd if=/dev/mem count=4 bs=1 skip=$(( 0x400 )) But I get an error: dd: 'standard input': cannot skip to specified offset when I try to write using... (1 Reply)
Discussion started by: rabrandt
1 Replies

2. What is on Your Mind?

Please Help Test the Forum Change Email Address Feature

Hi, I was just working on the new usercp and found that the "change your email address" function does not seem to work. In fact, it seems like it has never worked when I look at the code and the database. There seems to be some code missing from a decade ago, but I could be wrong. Could... (9 Replies)
Discussion started by: Neo
9 Replies

3. Forum Support Area for Unregistered Users & Account Problems

Further to my query re: failed attempt to change email address on existing account

Neo Thanks for your reply to my original post, entitled "Problem changing the email address associated with my unix.com account". I am unable to reply to you in that thread, as I am unable to log-on to unix.com! From what you said about purging dormant accounts, it is likely that my account... (1 Reply)
Discussion started by: irb
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

Change email address

How can I change email address registered with my unix.com account (1 Reply)
Discussion started by: hiten.r.chauhan
1 Replies

5. Forum Support Area for Unregistered Users & Account Problems

Email address change issue

Hi Neo/Scott, I decided to change my email address in my details from my earlier one to the one I got with my VIP membership. After the change, I got a message that I'll receive an activation link at the new address to re-activate my account. I haven't got that link till now. Also, all my... (3 Replies)
Discussion started by: elixir_sinari
3 Replies

6. Red Hat

How to change sender email address in mail -s command

Just having trouble trying to figure out what the option is. When I do mail -s "Subject" someuser@example.com I can't seem to specify "from" or "sender" option as I need it for my task. I tried using --f or -f though it didn't work. Can someone please tell me what other option... (0 Replies)
Discussion started by: rockf1bull
0 Replies

7. AIX

System email address change?

With a recent move to a new data center, the domain for our system emails have changed. We used automated emails with our daily process for informational and report sending. I edited the /etc/mail/sendmail.cf file where it had an entry pointing to the old mail server so I change this to our new... (3 Replies)
Discussion started by: NycUnxer
3 Replies

8. HP-UX

How to change the email from address?

Hi Friends, I am facing one issue with my hpux server. I used to send mail from the hpux server directly to the customer id. By default the from address includes the complete hostname(eg:- user1@hostname.domain.com). My domain name is registered, but this individual hostname is not... (1 Reply)
Discussion started by: arumon
1 Replies

9. Shell Programming and Scripting

Email address verification script

Hi Group, Please forgive in case this is discussed. I need help regarding a simple script to verify if the give address exist in the Ldap directory. If the email exists the script should exit with a 0 status or else a non zero status. I am currently using the following script (and it is... (4 Replies)
Discussion started by: Ramdas
4 Replies

10. UNIX for Dummies Questions & Answers

mailx- can we change the from address in the email that is sent out.

Hello, Is there anyway to change the from address in the email sent using mailx command? I have the following command: mailx -s $subject xxx@xxxx.com < $mail_mesg This defaults to the following format "acctname@usserver.companyname.com" as the from address in the email. Problem is this... (5 Replies)
Discussion started by: radhika
5 Replies
Login or Register to Ask a Question