summaryrefslogtreecommitdiffstats
path: root/bin/tools/file_from_env.php
diff options
context:
space:
mode:
Diffstat (limited to 'bin/tools/file_from_env.php')
-rwxr-xr-xbin/tools/file_from_env.php24
1 files changed, 24 insertions, 0 deletions
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
+<?php
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Benjamin Brahmer <info@b-brahmer.de>
+ * @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