Command-line history logging utilities
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Brennen Bearnes 5c1403ab7c add pause and resume subcommands 3 years ago
bin add pause and resume subcommands 3 years ago
lib/App add pause and resume subcommands 3 years ago
t initial commit: very basic util, README, perl apparatus 7 years ago
.gitignore initial commit: very basic util, README, perl apparatus 7 years ago
Build.PL commandlog-log: add --debug flag 4 years ago
COPYING move to gpl3, add COPYING 5 years ago
README.md move commandlog-log over to perl 6 years ago
benchmark.pl initial commit: very basic util, README, perl apparatus 7 years ago

README.md

commandlog

A small set of tools for logging and annotating command-line history in a Linux or Unixlike environment. Requires Perl, sqlite, and zsh. (It probably won't take much to add to Bash, but I haven't tried yet.)

So far, this is about an hour's worth of messing around one evening. It doesn't do much. Here's what I know works:

# assuming Debian/Ubuntu and sqlite not already installed:
sudo apt-get install sqlite3

git clone git@github.com:brennen/commandlog
cd commandlog
perl Build.PL
sudo ./Build installdeps
sudo ./Build install

Next, put the following in your .zshrc:

function preexec {
  commandlog add "$@"
}

Or, if using Oh-My-Zsh:

autoload -U add-zsh-hook
function commandlog_preexec {
  commandlog add "$@"
}
add-zsh-hook preexec commandlog_preexec

Now, with any luck, you can use:

commandlog log

And you should get output something like the following:

2018-03-23 05:29:22	v lib/App/CommandLog.pm
2018-03-23 05:29:09	vim Build.PL
2018-03-23 05:29:04	ll
2018-03-23 05:28:54	fg
2018-03-23 05:28:52	c log
2018-03-23 05:28:43	sudo ./Build install
2018-03-23 05:28:40	./Build install
2018-03-23 05:28:37	cd ..
2018-03-23 05:28:34	ll
2018-03-23 05:28:32	mv commandlog-log.pl commandlog-log

No promises though. If anybody tries this and has thoughts, please do let me know.