10 lines
246 B
Bash
10 lines
246 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
wp user create customer customer@woocommerceblockse2etestsuite.com \
|
||
|
--user_pass=password \
|
||
|
--role=subscriber \
|
||
|
--first_name='Jane' \
|
||
|
--last_name='Smith' \
|
||
|
--path=/var/www/html \
|
||
|
--user_registered='2022-01-01 12:23:45'
|