User Input: Difference between revisions

From Rosetta Code
Content deleted Content added
No edit summary
Line 14:
==[[UNIX Shell]]==
 
'''Interpreter:''' [[Debian Almquish ShellSHell]] (dash)
 
#!/bin/sh

Revision as of 22:23, 9 January 2007

In this task, the goal is to input a string and the integer 75000, from the normal user interface.

Text Terminal

Perl

Interpreter: Perl 5.8.8

#!/usr/bin/perl -w

use strict;

my $string = <STDIN>;
my $integer = <STDIN>;

UNIX Shell

Interpreter: Debian Almquish SHell (dash)

#!/bin/sh

read STRING
read INTEGER

Interpreter: Bourne Again SHell (bash)

#!/bin/bash

read STRING
read INTEGER