Created
November 2, 2013 01:39
-
-
Save cincodenada/7274521 to your computer and use it in GitHub Desktop.
A quick alias in irssi to save the scrollback log to a file. I recently turned on logging (/set autolog ON), and wanted to save what scrollback I'd kept as well. After some reading up, this should add the /logsb command, which stores logs for the current channel in the same place as the default logging, in files tagged .scrollback.log. The alias…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/alias logsb lastlog -file ~/irclogs/${tag}/${C}.${F}_${Z}.scrollback.log |
I suggest adding -date
to the lastlog arguments. Otherwise you just get a mess of timestamps without the corresponding dates.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works for me. You have to
mkdir ~/irclogs/freenode
or whatever the "server tag" is.