blob: dec6d2ec67b70f392d551ff352204095f1b8fbf9 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env bash
echo $1
echo $2
cd ./webapps/vid/WEB-INF/conf/
while read a ; do echo ${a//$1*/$1 = $2} ; done < ./features.properties > ./features.properties.t ; mv ./features.properties{.t,}
|