mirror of https://github.com/01-edu/public.git
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.
33 lines
948 B
33 lines
948 B
2 years ago
|
## set-internal-vars
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Create a script `set-internal-vars.sh`, which will allow you to create and print the following variables.
|
||
|
|
||
|
- `MY_MESSAGE` which contains the string `"Hello World"`.
|
||
|
- `MY_NUM` which contains the number `100`.
|
||
|
- `MY_PI` which contains the number `3.142`.
|
||
|
- `MY_ARR` which contains `(one two three four five)`
|
||
|
|
||
|
Expected output:
|
||
|
|
||
|
```console
|
||
|
$ ./set-internal-vars.sh
|
||
|
Hello World
|
||
|
100
|
||
|
3.142
|
||
|
one, two, three, four, five
|
||
|
$
|
||
|
```
|
||
|
|
||
|
### Hints
|
||
|
|
||
|
Creating variables:
|
||
|
|
||
|
Variables can be created either at the shell or in shell-scripts. Any variable created within a shell script is lost when the script stops executing. A variable created at the prompt, however, will remain in existence until the shell is terminated. The syntax for creating a variable is :
|
||
|
|
||
|
`<variable name>=<value>`
|
||
|
|
||
|
> You have to use Man or Google to know more about commands flags, in order to solve this exercise!
|
||
|
> Google and Man will be your friends!
|