7 lines
99 B
Bash
7 lines
99 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
read string
|
||
|
|
read integer
|
||
|
|
read -p 'Enter a number: ' number
|
||
|
|
echo "The number is $number"
|