Making The Bash History More Useful
Posted by giosue_c on Tue 10 Feb 2009 at 08:50
- Permanent and unlimited storage of bash history
- Pull commands back out of the sink and into your shell based on a tag or keyword
- Searchable bash history
- Tagable bash history
- Annotateable bash history
- Aggregate bash history from multiple computers into one grand unified history
- RSS feed of your bash history that you can filter
[ Parent | Reply to this comment ]
I disagree. Use the sequence once: no fault. Use them a second time: maybe let it slide. Use them a third time? That had better scream 'script it'!
M.
[ Parent | Reply to this comment ]
-BMcG
[ Parent | Reply to this comment ]
1.Login to shell_sink with your google account."
Okay, Google account. 'nuff read........:-(
[ Parent | Reply to this comment ]
[ Send Message | View Jerais's Scratchpad ]
i've an idea: is there any way to edit the script to go to my x server instated of going to the big google?
[ Parent | Reply to this comment ]
silly-program -auth:username:password
less downloaded-tporn-that-happens-to-include-children-unexpectedly.tx t
[ Parent | Reply to this comment ]
[ Parent | Reply to this comment ]
[ Parent | Reply to this comment ]
Try rebuilding with an encrypted db and I am all in.
[ Parent | Reply to this comment ]
[ Parent | Reply to this comment ]
Yup, agree. Did something like that as outlined in http://blogs.srijan.in/2008/06/06/automatically-mailing-a-daily-b ackup/
[ Parent | Reply to this comment ]
[ Parent | Reply to this comment ]
history -a ~/.history/tmp
cat ~/.history/tmp | tee -a ~/.history/`date +%d-%m-%y`.txt >> ~/.bash_history
tail -n $HISTFILESIZE ~/.bash_history > ~/.history/tmp
/bin/mv -f ~/.history/tmp ~/.bash_history
--
i usually copy a .bash_logout like that... it's not perfect but sometimes its usefull :D
[ Parent | Reply to this comment ]
[ Parent | Reply to this comment ]
[ Parent | Reply to this comment ]