Compare commits
3 commits
04af7ef182
...
ccd2b803d8
Author | SHA1 | Date | |
---|---|---|---|
ccd2b803d8 | |||
568d34b627 | |||
948e315f08 |
3 changed files with 6 additions and 3 deletions
6
pidd.sh
6
pidd.sh
|
@ -42,7 +42,11 @@ pidd_main() {
|
||||||
|
|
||||||
pidd_list_environment_variables() {
|
pidd_list_environment_variables() {
|
||||||
pidd_step "List environment variables"
|
pidd_step "List environment variables"
|
||||||
env | sort
|
for pidd_lev__name in $(printenv | cut -d = -f 1 | sort); do
|
||||||
|
pidd_lev__text=""
|
||||||
|
eval "pidd_lev__text=\"\${${pidd_lev__name}}\""
|
||||||
|
echo "${pidd_lev__name}=${pidd_lev__text}"
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
pidd_list_working_directory() {
|
pidd_list_working_directory() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from cd import browse, project, projects
|
from pidd import browse, project, projects
|
||||||
from rwx import ps, split
|
from rwx import ps, split
|
||||||
from rwx.log import log
|
from rwx.log import log
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,6 @@ from various contexts of CA, CI and OCI / OS.
|
||||||
## Tasks
|
## Tasks
|
||||||
|
|
||||||
* relay environment module name
|
* relay environment module name
|
||||||
* show previous states of directories & files
|
|
||||||
* write tests
|
* write tests
|
||||||
|
|
||||||
### .py
|
### .py
|
||||||
|
|
Loading…
Reference in a new issue