removed my stupid way of handling variable replacement

master
BodgeMaster 2020-02-23 20:27:29 +01:00
parent e76b0fe53a
commit 1f9552b48e
1 changed files with 1 additions and 9 deletions

View File

@ -1,17 +1,9 @@
function rewrite_code {
echo "Replacing $1 with $2 in all HTML and PHP files."
echo -e "`find ./ -name '*.html' -or -name '*.php' | sed "s/^/workingfile=\'/;s/\$/\'\; cat \\\$workingfile > .\/tmpdeploymentfile\; cat tmpdeploymentfile | sed \'s#$1#$2#\' > \\\$workingfile/"`\nrm tmpdeploymentfile" | bash -
}
#!/bin/bash
echo "Deployment script for repository \"web-deployment\"
`date`
=============================================================================="
rewrite_code %CONTENT_DIR% "\/common\/threadr"
#rewrite_code %ENFORCE_IP% `cat enforce_ip.template`
python variable_grabbler.py
echo "==============================================================================
Done."