Você precisará digitar export HISTFILE na linha de comando antes de iniciar o interpretador python (ou executar o script python) ou adicionar export HISTFILE ao seu .bashrc arquivo para que seja exportado automaticamente quando você faz o login.
Quando tento acessar o "HISTFILE" env var dentro de um programa, ele não está lá
$ echo $HISTFILE
/Users/drewgross/.bash_history
$ python
Python 2.7.10 (default, Oct 23 2015, 19:19:21)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.environ['HISTFILE']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'HISTFILE'
Mas se eu definir diretamente, é:
$ HISTFILE=wat python
Python 2.7.10 (default, Oct 23 2015, 19:19:21)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.environ['HISTFILE']
'wat'
Parece estar oculto por algum motivo. Por que é que? Existe alguma maneira de acessar este var dentro dos meus programas?
Você precisará digitar export HISTFILE na linha de comando antes de iniciar o interpretador python (ou executar o script python) ou adicionar export HISTFILE ao seu .bashrc arquivo para que seja exportado automaticamente quando você faz o login.