From f52de3c602dbd67dbe7323294c2b480ae3881f3f Mon Sep 17 00:00:00 2001 From: Dawid Pogorzelski Date: Mon, 14 Feb 2022 22:08:40 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 581bd77..896f524 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Example: ```bash -./getenv +getenv MY_VARIABLE=SOMEVALUE ``` @@ -12,10 +12,10 @@ MY_VARIABLE=SOMEVALUE Export all metadata attributes as ENV variables for current shell session and store them in /etc/environment for future sessions: ```bash export $(./getenv) -./getenv 1>> /etc/environment +getenv 1>> /etc/environment ``` or ```bash -./getenv 1>> /etc/environment +getenv 1>> /etc/environment source /etc/environment ```