Created
May 16, 2014 04:35
-
-
Save whywaita/aaf53bbf52f62511a38e to your computer and use it in GitHub Desktop.
これをcronで1min毎に回すと幸せになるんじゃ
This file contains hidden or 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
#!/bin/sh | |
DATE=`date +%Y%m%d` | |
rm -rf /home/whywaita/ircweb/$DATE.html | |
cp /home/whywaita/irclog/tkbctf/$DATE.log /home/whywaita/ircweb/ | |
cd /home/whywaita/ircweb/ | |
cat $DATE.log | sed "s/$/<br>/g" > $DATE.tmp | |
cat $DATE.tmp | sed "1i\<meta charset='utf-8'>" > $DATE.html | |
chmod 744 $DATE.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment