Jump to content

Shell Script Help


Recommended Posts

Hello,

 

I have one tar.Z file. I have to run shell script daily as it is required to update the database.

 



    customer_yyyymmdd_hhmi.tar.Z
    
    sales_ yyyymmdd_hhmi.csv (5 MB - 20 MB)
    purchase_ yyyymmdd_hhmi.xml (650 MB - 950 MB)


I have made small part of XML file. There are 4 parts. There is PHP Script which is working but i need to change each time file like PART1.xml, PART2.xml etc. 

 

Things to do:

 

1) Extract tar.Z file and Read CSV and XML file.

2) Read whole XML file automatically.

 

I hope i am clear. Thanks in advanced for your time and input.

 

Link to comment
https://forums.phpfreaks.com/topic/283322-shell-script-help/
Share on other sites

Where are you stuck? 

 

 
 
#!/bin/sh
DB_USER="****"
DB_PASS="****"
DB_NAME="****"
echo "##########"
echo $1
echo "##########"
echo
date
cd customer
for i in *-*.php
do 
  echo $i
  php $i $1
  echo
  date

I need something like this. This is just REFERENCE. It is not working.

Link to comment
https://forums.phpfreaks.com/topic/283322-shell-script-help/#findComment-1455776
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.