chore: Use printenv command in printenv script and refactor

This commit is contained in:
Vikash Kothary 2022-01-16 20:36:56 +00:00
parent 122b55ad4b
commit 1394874993
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +0,0 @@
#!/bin/bash
# file: print-env.sh
# description: Print env variable.
echo "${ENV}"

5
scripts/printenv.sh Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# file: printenv.sh
# description: Print all environment variables. Used for debugging.
printenv | sort