Created
February 9, 2021 07:28
-
-
Save rintoug/3ff7dfa2821b589f00f1a3771c2dcafe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Customers | |
php aritsan import:customers | |
echo Customers Done | |
# Products | |
php aritsan import:products | |
echo Products Done | |
# Orders | |
counter=1 | |
while [ $counter -le 3 ] | |
do | |
php aritsan import:orders | |
((counter++)) | |
done | |
echo Orders Done | |
# Invoices | |
counter=1 | |
while [ $counter -le 3 ] | |
do | |
php aritsan import:invoices | |
((counter++)) | |
done | |
echo Invoices Done | |
# Credit Memo | |
counter=1 | |
while [ $counter -le 3 ] | |
do | |
php aritsan import:credit_memo | |
((counter++)) | |
done | |
echo Credit Memo Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment