1.

How Do I Change The Name Of A Project?

Answer»

To change the name of a project called “foo” created by tg-admin quickstart, you have to manually GO through all the FILES of the project and replace all occurences of “foo” with “matrix”, where “matrix” is the new name of the project. If you are under Linux/Mac, you can automate this tedious work with this shell SNIPPET:

FIND . -name "*" |
while read F; do
sed -e 's#foo#matrix#g' < "$f" > /tmp/x
mv /tmp/x "$f"
done

To change the name of a project called “foo” created by tg-admin quickstart, you have to manually go through all the files of the project and replace all occurences of “foo” with “matrix”, where “matrix” is the new name of the project. If you are under Linux/Mac, you can automate this tedious work with this shell snippet:

find . -name "*" |
while read f; do
sed -e 's#foo#matrix#g' < "$f" > /tmp/x
mv /tmp/x "$f"
done



Discussion

No Comment Found