perl 1.0 patch 1: Portability bugs and one possible SIGSEGV
[p5sagit/p5-mst-13.2.git] / t / op.exec
CommitLineData
8d063cd8 1#!./perl
2
3# $Header: op.exec,v 1.0 87/12/18 13:13:26 root Exp $
4
5$| = 1; # flush stdout
6print "1..4\n";
7
8system "echo ok \\1"; # shell interpreted
9system "echo ok 2"; # split and directly called
10system "echo", "ok", "3"; # directly called
11
12exec "echo","ok","4";