diff options
author | V.Krishn <vkrishn4@gmail.com> | 2020-01-03 01:50:26 +0530 |
---|---|---|
committer | V.Krishn <vkrishn4@gmail.com> | 2020-01-03 01:50:26 +0530 |
commit | 183138db1a0614e3cdd51c3df601d0da5e3685a5 (patch) | |
tree | 3e7f89c617612c3c88ea20d05304232c7367026c | |
parent | adb278fcc92aed0a9b4186ee9d1389be99d79773 (diff) | |
download | scripts-183138db1a0614e3cdd51c3df601d0da5e3685a5.tar.bz2 |
improve title textv0.08
-rw-r--r-- | alpine/irc/log/get-irclog.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alpine/irc/log/get-irclog.sh b/alpine/irc/log/get-irclog.sh index 7e8dcd9..77707e4 100644 --- a/alpine/irc/log/get-irclog.sh +++ b/alpine/irc/log/get-irclog.sh @@ -65,7 +65,6 @@ header=' <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> '; -title='<title>alpine-irclog</title>'; style=$(cat <<EOT <style type="text/css"> body { font-family:Arial,Helvetica,sans-serif; @@ -140,6 +139,7 @@ al_irclog2html() { echo -e "${cGREEN}>>> creating ... ${cRED}$_outf${cNORMAL}" rm -f ${_outf}; touch $_outf echo ${header} > ${_outf} + title='<title>alpine-irclog-'${1}'</title>'; echo ${title} >> ${_outf} echo ${style} >> ${_outf} echo ${body} >> ${_outf} @@ -177,7 +177,7 @@ else echo -e "${cGREEN}>>> processing temp log:${cNORMAL} ${_tmpf}" echo '' > ${_tmpf} cp ${_CURRLF} ${_tmpf} - al_irclog2html + al_irclog2html "$log-$MONTHLY" done; fi |