Mercurial > dropbear
view libtomcrypt/fixupind.pl @ 1031:64c0aa01e2b6 fastopen
Update priority once the socket is open
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 20 Feb 2015 22:13:53 +0800 |
parents | 0cbe8f6dbf9e |
children |
line wrap: on
line source
open(IN,"<crypt.ind"); open(OUT,">crypt.ind.tmp"); $a = <IN>; print OUT "$a\n\\addcontentsline{toc}{chapter}{Index}\n"; while (<IN>) { print OUT $_; } close OUT; close IN; system("mv -f crypt.ind.tmp crypt.ind");