mirror of
https://github.com/Hizenberg469/Makefile-tutorial.git
synced 2026-04-19 22:02:24 +03:00
12 lines
348 B
Bash
12 lines
348 B
Bash
#!/bin/bash
|
|
|
|
echo -n Your age:
|
|
read AGE
|
|
|
|
#Problem with output as () cause to execute command in subshell.
|
|
#[ $AGE -lt 20 ] && (echo You are not allowed to see secret; exit 1) || echo Welcome
|
|
|
|
#command execute it same shell
|
|
[ $AGE -lt 20 ] && { echo You are not allowed to see secret; exit 1;} || echo Welcome
|
|
|
|
echo Secret is that there is no secret |