You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
479 B

BEGIN {
print "bunch of commandline error messages follow\n"
t = ARGV[0]; print "\n" t "\n"; system(t) # usage
t = ARGV[0] " -f"; print "\n" t "\n"; system(t) # no program file
t = ARGV[0] " -f /glop/glop"; print "\n" t "\n"; system(t) # program inaccessible
t = ARGV[0] " -zzz"; print "\n" t "\n"; system(t) # weird option
t = ARGV[0] " -F"; print "\n" t "\n"; system(t) # null FS
t = ARGV[0] " -F :"; print "\n" t "\n"; system(t) # field sep but no program
}