Initial commit

This commit is contained in:
NortPerm
2023-10-30 15:21:12 +03:00
committed by GitHub
commit 13e2575b4e
149 changed files with 3961 additions and 0 deletions

9
hw08_envdir_tool/testdata/echo.sh vendored Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
echo -e "HELLO is (${HELLO})
BAR is (${BAR})
FOO is (${FOO})
UNSET is (${UNSET})
ADDED is (${ADDED})
EMPTY is (${EMPTY})
arguments are $*"

2
hw08_envdir_tool/testdata/env/BAR vendored Normal file
View File

@@ -0,0 +1,2 @@
bar
PLEASE IGNORE SECOND LINE

1
hw08_envdir_tool/testdata/env/EMPTY vendored Normal file
View File

@@ -0,0 +1 @@

BIN
hw08_envdir_tool/testdata/env/FOO vendored Normal file

Binary file not shown.

1
hw08_envdir_tool/testdata/env/HELLO vendored Normal file
View File

@@ -0,0 +1 @@
"hello"

0
hw08_envdir_tool/testdata/env/UNSET vendored Normal file
View File