parent
9444b08dee
commit
0fc4690cd1
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@ COMMANDS_PREFIX = 'cd-'
|
|||
|
||||
|
||||
def cd_list_environment():
|
||||
for variable, value in os.environ.items():
|
||||
print(variable, value)
|
||||
for variable, value in sorted(os.environ.items()):
|
||||
print(variable, '=', value)
|
||||
|
||||
|
||||
def install_commands(path):
|
||||
|
|
Loading…
Reference in a new issue