in reply to Re: Re: trouble with system calls
in thread trouble with system calls

Check your return values:
chdir("/home/code/") or warn "chdir failed!\n"; system("svm_classify zkereigenout.dat svmmodel.mod") and warn "system +failed: $!\n";
(Yes, that second line should have "and warn". system has it's return values kinda backward.)

Try system("echo foo>svm_predictions") in place of your system call and see if that works (or fails giving meaningful information).