in reply to Interactive Perl script
#!/usr/bin/perl use strict; print "can you write device drivers? "; chomp(my $input = <> ); ($input eq 'Y') ? print 'wow, you must be very skilled' : print 'neither can i, i am just shell script';
|
|---|
| Replies are listed 'Best First'. |
|---|