Rev 2196 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/bashif [ $# -ne 1 ]thenecho "Usage: $0 <master_affiliate_name>"exit 1fiMASTER_AFF_NAME=$1mysql -uroot -pshop2020 user -e "CALL add_master_affiliate('${MASTER_AFF_NAME}');"mysql -uroot -pshop2020 user -e "SELECT * FROM masteraffiliate where name = '${MASTER_AFF_NAME}';"