Guest User

Untitled

a guest
Jun 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. #
  2. #shell + sed script to change craftirc logs into full irssi logs
  3.  
  4. botname=mineBot
  5. channame=#minecraft
  6. sed -i.orig 's/^\([0-9][0-9]:[0-9][0-9]\) <\(.\)'$botname'> (\([^)]\+\))/\1 <\2\3>/;
  7. s/^\([0-9][0-9]:[0-9][0-9]\) <\(.\)\('$botname'\)> \[\([^[ ]\+\) connected]/\1 -!- \4 [\4@\3] has joined '$channame'/;
  8. s/^\([0-9][0-9]:[0-9][0-9]\) <\(.\)\('$botname'\)> \[\([^[ ]\+\) disconnected]/\1 -!- \4 [\4@\3] has quit [Quit: ]/;' $channame.*.log
Add Comment
Please, Sign In to add comment