2020-05-06 12:38:07 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-05-06 13:33:31 +00:00
|
|
|
_file="$1"
|
|
|
|
|
|
|
|
if [ -z "$_file" ] ; then
|
|
|
|
_file="wp-dev-config"
|
2020-05-06 12:38:07 +00:00
|
|
|
fi
|
|
|
|
|
2020-05-06 13:33:31 +00:00
|
|
|
cp /home/ray/Projects/wordpress-dev/wp-dev-config "$(pwd)/$_file"
|
2020-05-06 12:38:07 +00:00
|
|
|
|
|
|
|
|