8 lines
127 B
Bash
Executable File
8 lines
127 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
|
|
for arg in "$@"; do
|
|
cp -r cms-account-proto/ $arg
|
|
sed -i '' "s|cms-account-proto|$arg|g" $arg/*.html
|
|
done
|