in reply to safe to use system
#! /usr/bin/perl -w use strict; system('perl script1.pl') && exit(1); system('perl script2.pl') && exit(2); system('perl script3.pl') && exit(3); exit(0); [download]
- Tom