You are not logged in.
seems like it is just a wraper around vte.
strace tells me it does interact with _bash_history. wish to know how.
Offline
If you want to edit the history, or preload it with commands, simply open .bash_history in a text editor. You can't have any terminals running while you do this, they will lock the file.
In thunar you can type the path and it will open, so "home/user/.bash_history"
Offline
when there are 2 or more terminals running, history command outputs differ, so each instance of terminal
seemingly has its own storage, be that temporary as it may, i wonder where the files are.
Offline
They are stored in memory. The issue is that bash will write to the history file when the terminal process exits. If you have multiple terminals running, you won't, by default, see the latest history entries.
To get around this, add:
export PROMPT_COMMAND='history -a'
...to your ~/.bashrc file. This will force bash to write the command to the history file as soon as it completes running.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
[ Generated in 0.014 seconds, 12 queries executed - Memory usage: 520.85 KiB (Peak: 521.7 KiB) ]