Home | History | Annotate | Download | only in vq

Lines Matching refs:command

26 	    my $command=$line;
27 print ">>> $command";
28 die "Couldn't shell command.\n\tcommand:$command\n"
29 if syst($command);
40 $command="rm -f $globalname.vqh";
41 die "Couldn't remove file.\n\tcommand:$command\n"
42 if syst($command);
62 $command="rm -f $datafile.tmp";
63 print "\n\n>>> $command\n";
64 die "Couldn't remove temp file.\n\tcommand:$command\n"
65 if syst($command);
70 $command="cat $dir/$datafile.vqd >> $datafile.tmp";
71 print ">>> $command\n";
72 die "Couldn't append training data.\n\tcommand:$command\n"
73 if syst($command);
77 my $command="huffbuild $datafile.tmp $range $guard";
78 print ">>> $command\n";
79 die "Couldn't build huffbook.\n\tcommand:$command\n"
80 if syst($command);
82 $command="cat $datafile.vqh >> $globalname.vqh";
83 print ">>> $command\n";
84 die "Couldn't append to output book.\n\tcommand:$command\n"
85 if syst($command);
87 $command="rm $datafile.vqh";
88 print ">>> $command\n";
89 die "Couldn't remove temporary output file.\n\tcommand:$command\n"
90 if syst($command);
92 $command="rm -f $datafile.tmp";
93 print ">>> $command\n";
94 die "Couldn't remove temporary output file.\n\tcommand:$command\n"
95 if syst($command);
101 $command="rm -f temp$$.vqd";
102 print ">>> $command\n";
103 die "Couldn't remove temp files.\n\tcommand:$command\n"
104 if syst($command);