From 9917bbe77466b90bed6e3aa18b0954986a6a13b1 Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Sun, 25 Oct 2020 10:30:26 +0100 Subject: Add file_from_env.php Signed-off-by: Benjamin Brahmer --- bin/tools/file_from_env.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 bin/tools/file_from_env.php (limited to 'bin') diff --git a/bin/tools/file_from_env.php b/bin/tools/file_from_env.php new file mode 100755 index 000000000..e63cda1c4 --- /dev/null +++ b/bin/tools/file_from_env.php @@ -0,0 +1,24 @@ +#!/usr/bin/env php + + * @copyright Benjamin Brahmer 2020 +*/ + +if ($argc < 2) { + echo "This script expects two parameters:\n"; + echo "./file_from_env.php ENV_VAR PATH_TO_FILE\n"; + exit; +} + +# Read environment variable +$content = getenv($argv[1]); + +file_put_contents($argv[2], $content); + +echo "Done...\n"; \ No newline at end of file -- cgit v1.2.3