OILS
/
opy
/
_regtest
/
src
/
spec
/
bin
/ printenv.py
View on Github
|
oilshell.org
8 lines, 5 significant
1
#!/usr/bin/env python
2
from __future__ import print_function
3
4
import os
5
import sys
6
7
for name in sys.argv[1:]:
8
print(os.environ.get(name))