File src/hstr.c changed (mode: 100644) (index 6a85ccf..1263ddd) |
... |
... |
static const char *INSTALL_BASH_STRING= |
188 |
188 |
// history -c ... CLEAR in memory history (keeps .bash_history content) |
// history -c ... CLEAR in memory history (keeps .bash_history content) |
189 |
189 |
// history -r ... append ALL entries from .bash_history to memory (useful to sync DIFFERENT Bash sessions) |
// history -r ... append ALL entries from .bash_history to memory (useful to sync DIFFERENT Bash sessions) |
190 |
190 |
// Conclusion: |
// Conclusion: |
191 |
|
// -a -n ... Fastest and almost-consistent option i.e. there is efficiency/integrity trade-off |
|
|
191 |
|
// -a -n ... Fastest and almost-consistent option i.e. there is efficiency/integrity trade-off. |
192 |
192 |
// It works correctly if memory entries are not deleted by HSTR. It doesn't synchronize history |
// It works correctly if memory entries are not deleted by HSTR. It doesn't synchronize history |
193 |
193 |
// across different Bash sessions. |
// across different Bash sessions. |
194 |
194 |
// -c -r ... Forces entire .bash_history to be reloaded (handles history deletes, synchronizes different Bash sessions) |
// -c -r ... Forces entire .bash_history to be reloaded (handles history deletes, synchronizes different Bash sessions) |