b2j
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:0k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. #!/usr/local/bin/perl
  2. $tmpjisfile = "/tmp/jisgate$$.jis";
  3. $tmpeucfile = "/tmp/jisgate$$";
  4. $jis='/usr/local/bin/jis';
  5. $e2b='/usr/local/bin/sinocode';
  6. open(SINO,"| $e2b -big - -jis $tmpeucfile") || die "can't open pipe to $e2b $!n";
  7. while (<>){
  8. print SINO $_;
  9. }
  10. close(SINO);
  11. chdir('/tmp');
  12. system("$jis -j $tmpeucfile $tmpjisfile");
  13. open(TMP,$tmpjisfile) || die "can't read $tmpjisfile $!n";
  14. print <TMP>;
  15. close(TMP);
  16. unlink($tmpjisfile);
  17. unlink($tmpeucfile);